/* ══ CRITICAL: Prevent horizontal scroll on ALL devices ══ */
html { overflow-x: hidden !important; }
body { overflow-x: hidden !important; max-width: 100vw; }

*, *::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: 1140px;
  --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: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border-bottom: 3px solid #00848F;
}

/* ── 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: #1a1a2e; 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(0,132,143,0.08); }
.header-divider {
  width: 1px; height: 22px;
  background: #dde4ec;
  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: #00848F; text-decoration: none;
  border: 1.5px solid #00848F;
  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(0,132,143,0.07);
  border-color: #006b75;
}
.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;
  background: #f8fafa;
  border-top: 1px solid #e5e7eb;
}
.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: #444;
  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: #00848F;
  background: rgba(0,132,143,0.07);
}
.header-tab.active {
  color: #00848F;
  background: rgba(0,132,143,0.08);
  border-color: rgba(0,132,143,0.3);
  border-bottom-color: transparent;
  font-weight: 700;
}
.header-tab.active::after {
  content: "";
  position: absolute; bottom: -2px; left: -2px; right: -2px;
  height: 2px;
  background: #FFD700;
}
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; color: #1a1a2e; 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;
  min-width: 0;
}
.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; overflow: hidden; }
.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.4rem; align-items: center;
  width: 100%; overflow: hidden;
}
.price-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.42rem 0.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  background: #fff;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
  min-width: 0;
}
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.price-input:focus { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(0,132,143,.1); }
.filter-btn-apply {
  width: 100%; padding: 0.58rem;
  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.5rem;
  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;
  min-width: 0;
  height: 200px;
  position: relative; overflow: hidden;
  background: #e8eef0;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
  display: block;
}
/* Resim yüklenemezse placeholder göster */
.tour-card-img img[src=""],
.tour-card-img img:not([src]) {
  opacity: 0;
}
.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 ── */

/* Newsletter bar */
.ft-nl {
  background: linear-gradient(135deg, #00848F 0%, #006b75 100%);
  padding: 2rem 0;
  border-bottom: 3px solid rgba(255,255,255,.12);
}
.ft-nl-in {
  max-width: 1140px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.ft-nl-txt {
  display: flex; align-items: center; gap: .85rem; color: #fff; flex: 1; min-width: 200px;
}
.ft-nl-txt svg { flex-shrink: 0; opacity: .85; color: #FFD700; }
.ft-nl-txt h3 { font-family: "Roboto Slab", serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .15rem; color: #fff; }
.ft-nl-txt p  { font-size: .82rem; color: rgba(255,255,255,.78); margin: 0; }
.ft-nl-form { display: flex; gap: 0; flex-shrink: 0; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.ft-nl-form input {
  border: none; padding: .62rem 1rem;
  font-family: "Roboto", sans-serif; font-size: .86rem;
  outline: none; width: 240px; background: #fff; color: #1a1a2e;
}
.ft-nl-form button {
  background: #FFD700; color: #1a1a2e; border: none;
  padding: .62rem 1.4rem; font-family: "Roboto", sans-serif;
  font-size: .86rem; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.ft-nl-form button:hover { background: #e6c200; }
.ft-nl-ok {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 5px; padding: .6rem 1.1rem; font-size: .83rem; color: #fff; font-weight: 600;
}

/* ── FOOTER MAIN ── */
.ft {
  background: #f7f9fc;
  border-top: 3px solid #00848F;
  padding: 3.5rem 0 0;
}
.ft-inner { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.ft-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 2.5rem 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e4eaf0;
}

/* Brand column */
.ft-col-brand { }
.ft-logo-link { display: inline-block; margin-bottom: .9rem; text-decoration: none; }
.ft-logo-txt {
  font-family: "Roboto Slab", serif; font-size: 1.5rem; font-weight: 700;
  color: #1a1a2e; letter-spacing: -.3px; line-height: 1;
}
.ft-logo-txt span { color: #00848F; }
.ft-logo-dot { font-size: 1rem; color: #888; }
.ft-about {
  font-size: .82rem; color: #5a6472; line-height: 1.7;
  margin-bottom: 1.1rem; max-width: 300px;
}
.ft-trust { display: flex; flex-wrap: wrap; gap: .35rem; }
.ft-badge {
  display: inline-flex; align-items: center; gap: .28rem;
  font-size: .68rem; font-weight: 700; color: #00848F;
  background: #e8f6f7; padding: .25rem .6rem; border-radius: 20px;
  border: 1px solid #c5e8eb;
}
.ft-badge svg { flex-shrink: 0; }

/* Column headings */
.ft-heading {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: #00848F;
  margin-bottom: .8rem;
  display: flex; align-items: center; gap: .4rem;
}
.ft-heading::after {
  content: ''; flex: 1; height: 1px; background: linear-gradient(90deg,#c5e8eb,transparent);
}

/* Links */
.ft-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .38rem; }
.ft-links li a {
  font-size: .82rem; color: #5a6472; text-decoration: none;
  transition: all .15s; display: flex; align-items: center; gap: .4rem;
  padding: .05rem 0;
}
.ft-links li a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #1a1a2e; opacity: 0; flex-shrink: 0; transition: opacity .15s;
  margin-left: -2px;
}
.ft-links li a:hover { color: #00848F; padding-left: 6px; }
.ft-links li a:hover::before { opacity: 1; }

/* Contact items */
.ft-contacts { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.1rem; }
.ft-citem {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .8rem; color: #5a6472; text-decoration: none;
  transition: color .15s; line-height: 1.45;
}
.ft-citem:hover { color: #00848F; }
.ft-cico {
  width: 24px; height: 24px; border-radius: 50%;
  background: #e8f6f7; color: #00848F;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0px;
}

/* WhatsApp CTA in contact col */
.ft-wa-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #25D366; color: #fff; text-decoration: none;
  font-size: .79rem; font-weight: 700; padding: .45rem .9rem;
  border-radius: 20px; margin-top: .5rem;
  transition: background .15s; box-shadow: 0 2px 8px rgba(37,211,102,.25);
}
.ft-wa-btn:hover { background: #1da851; }

/* ── BOTTOM BAR ── */
.ft-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0 1.4rem; flex-wrap: wrap; gap: .75rem;
}
.ft-copy { font-size: .74rem; color: #8a95a2; }
.ft-copy strong { color: #5a6472; }

/* Social icons in bottom bar */
.ft-socials { display: flex; align-items: center; gap: .4rem; }
.ft-soc {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .18s;
  background: #fff; border: 1.5px solid #dde4ec; color: #5a6472;
}
.ft-soc:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.ft-soc-wa  { background: #25D366; border-color: #25D366; color: #fff; }
.ft-soc-wa:hover  { background: #1da851; border-color: #1da851; }
.ft-soc-ig:hover  { background: #e1306c; border-color: #e1306c; color: #fff; }
.ft-soc-fb:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
.ft-soc-yt:hover  { background: #ff0000; border-color: #ff0000; color: #fff; }
.ft-soc-tw:hover  { background: #000;    border-color: #000;    color: #fff; }

@media(max-width:960px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ft-col-brand { grid-column: 1 / -1; }
  .ft-about { max-width: 100%; }
}
@media(max-width:560px) {
  .ft-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ft-nl-in { flex-direction: column; align-items: flex-start; }
  .ft-nl-form { width: 100%; }
  .ft-nl-form input { flex: 1; min-width: 0; width: auto; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: .65rem; }
}


.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); }
}

/* ══════════════════════════════════════════
   HEADER V2 — Sadeleştirilmiş Menü
══════════════════════════════════════════ */
.header-nav-links {
  display: flex; align-items: center; gap: .1rem;
  margin-left: 1.25rem;
}
.header-nav-link {
  font-size: .83rem; font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: .5rem .85rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.header-nav-link:hover { background: rgba(255,255,255,.14); color: #fff; }
.header-nav-link.active { background: rgba(255,255,255,.18); color: #fff; font-weight: 700; }
.header-nav-link.gold { color: #FFD700; font-weight: 700; }
.header-nav-link.gold:hover { background: rgba(255,215,0,.15); }

/* MOBILE MENU — only on mobile */
.mobile-menu {
  display: none !important;
  flex-direction: column;
  background: #00727C;
  border-top: 1px solid rgba(255,255,255,.15);
}
@media(max-width:1024px) {
  .mobile-menu.open { display: flex !important; }
}
.mobile-menu-link {
  padding: .75rem 1.25rem;
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: background .15s;
}
.mobile-menu-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.mobile-menu-link.active { color: #FFD700; font-weight: 700; }
.mobile-menu-divider { height: 1px; background: rgba(255,255,255,.15); margin: .25rem 0; }

/* ── FOOTER SOSYAL MEDYA ── */
.footer-social {
  display: flex; gap: .5rem;
  margin-top: .85rem;
}
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all .2s;
}
.social-icon:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: translateY(-2px);
}

/* ── FOOTER LOGO TEXT ── */
.footer-brand .logo-text {
  font-family: "Roboto Slab", serif;
  font-size: 1.2rem; font-weight: 700; color: white;
  margin-bottom: .75rem; display: block;
  text-decoration: none;
}


/* ── CURRENCY DROPDOWN ── */
.currency-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid #e0e0e0; border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15); min-width: 200px; z-index: 300; overflow: hidden;
}
.currency-dropdown.open { display: block; }
.currency-dropdown button {
  display: block; width: 100%; text-align: left;
  padding: .55rem .9rem; font-size: .82rem; font-family: "Roboto", sans-serif;
  color: #1a1a2e; background: none; border: none; cursor: pointer; transition: background .12s;
}
.currency-dropdown button:hover { background: #e6f7f8; color: #00848F; }
.currency-dropdown button.cur-active { font-weight: 700; color: #00848F; background: #f0fbfc; }

/* ── TAB GOLD (Campaigns) ── */
.header-tab.tab-gold { color: #FFD700; font-weight: 700; }
.header-tab.tab-gold:hover { background: rgba(255,215,0,.1); }

/* ══════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVE FIXES
══════════════════════════════════════════ */

/* Header mobile fixes */
@media(max-width:1024px) {
  /* Hide text tools, keep currency + hamburger */
  .header-top-right .header-tool { display: none; }
  #curBtn { display: flex !important; }
  .header-divider { display: none; }
}
@media(max-width:480px) {
  #curBtn { display: none !important; }
  .header-top-right { gap: .1rem; }
}

/* Tour detail page */
@media(max-width:768px) {
  .tour-tabs { gap: 0; }
  .tour-tab { padding: .5rem .65rem; font-size: .76rem; }
  .booking-box { position: static !important; }
  .scard { margin-bottom: .5rem; }
  .inc-grid { grid-template-columns: 1fr !important; }
  .tour-title { font-size: 1.15rem !important; }
}

/* Dashboard */
@media(max-width:600px) {
  .sc-row { grid-template-columns: 1fr 1fr !important; }
  .dl { flex-direction: column; }
  .dsb { width: 100%; position: static; }
  .du-info { flex-direction: column; text-align: center; }
}
@media(max-width:400px) {
  .sc-row { grid-template-columns: 1fr !important; }
}

/* Booking page */
@media(max-width:500px) {
  .step-label { display: none; }
  .btn-next, .btn-back { padding: .7rem 1.1rem; font-size: .84rem; }
  .bk-grid { grid-template-columns: 1fr; }
  .frow.three { grid-template-columns: 1fr !important; }
}

/* Contact page */
@media(max-width:480px) {
  .info-strip-inner { grid-template-columns: 1fr !important; }
  .contact-hero { padding: 2rem 16px 1.5rem; }
}

/* About page */
@media(max-width:480px) {
  .team-grid { grid-template-columns: 1fr 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }
}

/* FAQ page */
@media(max-width:480px) {
  .faq-grid { grid-template-columns: 1fr !important; }
  .faq-cats { flex-wrap: wrap; }
}

/* Campaigns */
@media(max-width:480px) {
  .camp-card { padding: 1rem; }
  .camp-actions { flex-direction: column; }
  .camp-actions a { text-align: center; justify-content: center; }
}

/* Footer newsletter */
@media(max-width:600px) {
  .fn-form { flex-direction: column; border-radius: 5px; }
  .fn-form input { width: 100%; border-radius: 5px 5px 0 0; }
  .fn-form button { border-radius: 0 0 5px 5px; padding: .65rem; }
  .ftr-grid { grid-template-columns: 1fr !important; }
  .ftr-bot { flex-direction: column; gap: .65rem; }
}

/* ══ INDEX PAGE MOBILE ══ */
@media(max-width:768px) {
  /* Hero */
  .hero { padding: 2rem 0 0; }
  .hero-title { font-size: 1.6rem !important; line-height: 1.25 !important; }
  .hero-sub { font-size: .88rem !important; margin-bottom: 1.25rem; }
  .hero-stats-bar { display: none; }

  /* Search box — stack vertically */
  .search-box { padding: .85rem; margin: 0; border-radius: 6px 6px 0 0; }
  .search-fields {
    grid-template-columns: 1fr !important;
    border: none !important;
    box-shadow: none !important;
    gap: .5rem !important;
  }
  .search-field {
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 6px !important;
    padding: .7rem .9rem !important;
  }
  .search-submit {
    border-radius: 6px !important;
    padding: .85rem !important;
    justify-content: center;
    width: 100%;
  }

  /* Main layout */
  .main-grid { grid-template-columns: 1fr !important; }
  .sidebar { display: none; }
  .filters-bar .container { gap: .35rem; }
  .filter-chip { font-size: .75rem; padding: .28rem .65rem; }

  /* Tour card — stack vertically */
  .tour-card { flex-direction: column !important; }
  .tour-card-img { flex: none !important; width: 100% !important; height: 200px !important; }
  .tour-card-body { padding: .85rem !important; }
  .tour-card-header { flex-wrap: wrap; gap: .4rem; }
  .tour-card-price { font-size: 1.1rem !important; }

  /* Destinations grid */
  .dest-grid { grid-template-columns: 1fr 1fr !important; gap: .5rem !important; }
  .dest-card { height: 130px !important; }
  .dest-card.large { height: 130px !important; grid-column: span 2; }
  .dest-card-info h3 { font-size: .82rem !important; }

  /* Why/features grid */
  .why-grid { grid-template-columns: 1fr 1fr !important; gap: .75rem !important; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr !important; }

  /* General */
  .container { padding: 0 14px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
}

@media(max-width:480px) {
  body { font-size: 14px; }
  .container { padding: 0 12px; }

  /* Hero */
  .hero { padding: 1.5rem 0 0; }
  .hero-title { font-size: 1.35rem !important; }

  /* Search */
  .search-box-title { font-size: .72rem; }
  .search-field select, .search-field input { font-size: .84rem !important; }

  /* Tour cards */
  .tour-card-img { height: 175px !important; }
  .tour-card-tags { display: none; }
  .tour-card-dates { font-size: .72rem !important; }

  /* Dest grid */
  .dest-grid { grid-template-columns: 1fr 1fr !important; }
  .dest-card { height: 110px !important; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr !important; }

  /* Section headings */
  .section-title { font-size: 1.3rem !important; }
  .section-sub { font-size: .84rem !important; }
}

/* ══ INDEX — MOBILE RESPONSIVE ══ */

/* Tablet & mobile: hide sidebar, single column */
@media(max-width:900px) {
  .main-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* Mobile: stack search fields vertically */
@media(max-width:700px) {
  /* Hero */
  .hero { padding: 1.75rem 0 0; }
  .hero-title { font-size: 1.5rem; line-height: 1.25; }
  .hero-sub { font-size: .86rem; margin-bottom: 1.25rem; }
  .hero-stats-bar { display: none; }

  /* Search */
  .search-box { padding: .85rem; }
  .search-fields {
    grid-template-columns: 1fr;
    border: none;
    box-shadow: none;
    gap: .5rem;
  }
  .search-field {
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
  }
  .search-submit {
    border-radius: 6px;
    padding: .9rem;
    justify-content: center;
    width: 100%;
  }

  /* Tour card */
  .tour-card { flex-direction: column; }
  .tour-card-img { flex: none; width: 100%; height: 200px; }
  .tour-card-footer { flex-direction: column; gap: .75rem; }
  .tour-card-footer > div:last-child { align-items: flex-start; }
  .btn-book { width: 100%; text-align: center; justify-content: center; }
}


/* ══════════════════════════════════════════════════════
   GLOBAL OVERFLOW FIX — prevents ALL horizontal scroll
══════════════════════════════════════════════════════ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  max-width: 100%;
}
img, video, iframe, table {
  max-width: 100%;
}

/* ══════════════════════════════════════════════════════
   HEADER — INFO BAR MOBILE
══════════════════════════════════════════════════════ */
@media(max-width:768px) {
  #headerInfoBar { display: none !important; }
  
  /* Nav bar padding */
  header .container { padding-left: 12px !important; padding-right: 12px !important; }
  
  /* Logo smaller on mobile */
  header img[alt] { max-height: 36px !important; }
}

/* ══════════════════════════════════════════════════════
   MOBILE MENU — full-width overlay style
══════════════════════════════════════════════════════ */
#mobileMenu a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.25rem;
  font-size: .92rem;
  color: #1a1a2e;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background .15s;
}
#mobileMenu a:hover { background: #f0f9fa; color: #00848F; }
#mobileMenu a:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════
   TOURS LIST PAGE
══════════════════════════════════════════════════════ */
@media(max-width:768px) {
  /* Two-column grid → single column */
  .tl-wrap { grid-template-columns: 1fr !important; padding: 0 12px !important; gap: 1rem !important; }
  .tl-sidebar { display: none !important; }
  
  /* Hero padding */
  .tl-hero { padding: 1.5rem 0 1.5rem !important; }
  .tl-hero h1 { font-size: 1.35rem !important; }
  .tl-hero p { font-size: .82rem !important; }
  .tl-hero-in { padding: 0 12px !important; }
  
  /* Search box — stack vertically */
  .tl-searchbox { margin-top: 1rem; }
  .tsb-row { flex-wrap: wrap !important; border-radius: 8px !important; }
  .tsb-field { flex: 1 1 45% !important; border-right: none !important; border-bottom: 1px solid #e5e7eb !important; min-width: 140px; }
  .tsb-btn { width: 100% !important; justify-content: center !important; padding: .9rem !important; border-radius: 0 0 8px 8px !important; }
  
  /* Tour cards — vertical stack */
  .tour-card { flex-direction: column !important; }
  .tc-img { width: 100% !important; height: 200px !important; }
  .tc-body { padding: .85rem !important; }
  
  /* Footer of card */
  .tc-foot { flex-wrap: wrap !important; gap: .75rem !important; }
  .tc-foot > div:last-child { width: 100% !important; flex-direction: row !important; align-items: center !important; justify-content: space-between !important; }
  .tc-book { flex: 1 !important; text-align: center !important; justify-content: center !important; }
}

@media(max-width:480px) {
  .tc-img { height: 175px !important; }
  .tc-tags { flex-wrap: wrap !important; }
  .tour-card { border-radius: 8px !important; }
  
  /* Toolbar */
  .tl-toolbar { flex-wrap: wrap !important; }
}

/* ══════════════════════════════════════════════════════
   TOUR DETAIL PAGE
══════════════════════════════════════════════════════ */
@media(max-width:900px) {
  .tour-layout { grid-template-columns: 1fr !important; padding: 1rem 12px !important; }
  .bk-sidebar { position: static !important; order: -1; }
  
  /* Booking card on top on mobile */
  .bk-card { margin-bottom: 1rem; }
}

@media(max-width:600px) {
  /* Hero */
  .hero { height: 260px !important; }
  .hero-title { font-size: 1.3rem !important; }
  .hero-meta { gap: .4rem !important; }
  .hero-badge { font-size: .7rem !important; padding: .22rem .55rem !important; }
  
  /* Gallery */
  .gal-thumb { width: 56px !important; height: 42px !important; }
  
  /* Tab nav — horizontal scroll */
  .tour-tabs-inner { padding: 0 8px !important; }
  .ttab { padding: .6rem .75rem !important; font-size: .78rem !important; }
  
  /* Breadcrumb */
  .tour-layout > div:first-child { font-size: .72rem !important; }
  
  /* Booking sidebar — price */
  .bk-price { font-size: 1.5rem !important; }
  
  /* Section cards */
  .sec-body { padding: .85rem !important; }
  .sec-hd { padding: .7rem .9rem !important; }
  
  /* Day blocks */
  .day-hd { padding: .7rem .85rem !important; }
  .day-section { padding: .7rem .85rem !important; }
}

@media(max-width:400px) {
  .hero { height: 220px !important; }
  .ttab { padding: .5rem .6rem !important; font-size: .74rem !important; }
}

/* ══════════════════════════════════════════════════════
   BOOKING PAGE
══════════════════════════════════════════════════════ */
@media(max-width:768px) {
  .bk-grid { grid-template-columns: 1fr !important; }
  .step-wrap { padding: 0 12px !important; }
}
@media(max-width:500px) {
  .step-label { display: none !important; }
  .step-dot { width: 28px !important; height: 28px !important; font-size: .72rem !important; }
  .btn-next, .btn-back { padding: .75rem 1rem !important; font-size: .84rem !important; }
  .frow.three { grid-template-columns: 1fr !important; }
  .pax-row { flex-direction: column !important; gap: .5rem !important; }
}

/* ══════════════════════════════════════════════════════
   TOUR DATES PAGE
══════════════════════════════════════════════════════ */
@media(max-width:600px) {
  .td-wrap { padding: 1rem 12px 3rem !important; }
  .td-row { grid-template-columns: 32px 1fr !important; }
  .td-right { display: none !important; }
  .td-name { font-size: .85rem !important; }
  .td-filters { gap: .4rem !important; }
  .td-filters select, .td-filters a { font-size: .78rem !important; padding: .35rem .65rem !important; }
}

/* ══════════════════════════════════════════════════════
   CONTACT, ABOUT, FAQ — GENERAL FORM FIXES
══════════════════════════════════════════════════════ */
@media(max-width:600px) {
  /* Grids → single column */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Padding tighten */
  .container { padding: 0 12px !important; }
  
  /* Tables — horizontal scroll */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  
  /* Forms */
  input, select, textarea { font-size: 16px !important; } /* Prevents iOS zoom */
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
@media(max-width:600px) {
  .fn-in { flex-direction: column !important; align-items: flex-start !important; }
  .fn-form { width: 100% !important; }
  .fn-form input { width: 100% !important; border-radius: 5px 5px 0 0 !important; }
  .fn-form button { border-radius: 0 0 5px 5px !important; padding: .65rem !important; width: 100% !important; }
  .ftr-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .ftr-bot { flex-direction: column !important; align-items: flex-start !important; gap: .65rem !important; }
}

/* ══════════════════════════════════════════════════════
   COOKIE BANNER — MOBILE
══════════════════════════════════════════════════════ */
@media(max-width:600px) {
  #ck-bar .ck-inner { flex-direction: column !important; }
  #ck-bar .ck-btns { flex-wrap: wrap !important; width: 100% !important; }
  #ck-bar .ck-btns button { flex: 1 !important; min-width: 120px !important; }
}

/* ══════════════════════════════════════════════════════
   iOS / SAFARI FIXES
══════════════════════════════════════════════════════ */
/* Prevent tap highlight */
a, button { -webkit-tap-highlight-color: transparent; }
/* Smooth scroll on iOS */
html { -webkit-overflow-scrolling: touch; }
/* Input zoom fix — font-size must be >= 16px on iOS */
@media(max-width:600px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }
}
/* Position sticky fix for iOS */
.tour-tabs-wrap { position: -webkit-sticky; position: sticky; }
header { position: -webkit-sticky; position: sticky; }
