:root {
  --bg: #07111b;
  --bg-soft: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-dark: rgba(8, 17, 30, 0.72);
  --text: #10283b;
  --muted: #62788b;
  --line: rgba(16, 40, 59, 0.1);
  --primary: #0c7abf;
  --primary-deep: #0b305b;
  --accent: #d5a44c;
  --shadow: 0 24px 60px rgba(7, 17, 27, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(12, 122, 191, 0.12), transparent 25%),
    radial-gradient(circle at top right, rgba(213, 164, 76, 0.12), transparent 22%),
    linear-gradient(180deg, #eef4f9 0%, #fbfdff 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, ul { margin-top: 0; }
h1, h2 { font-family: 'Playfair Display', serif; }
.page-shell { min-height: 100vh; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5rem 0; }
.glass, .glass-soft, .glass-strong {
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: var(--shadow);
}
.glass { background: rgba(255,255,255,0.1); }
.glass-soft { background: rgba(255,255,255,0.14); }
.glass-strong { background: var(--surface-strong); }

.topbar {
  position: relative;
  z-index: 10;
  background: rgba(7, 17, 27, 0.94);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner, .topbar-actions, .nav-side, .hero-actions, .booking-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-inner { justify-content: space-between; padding: 0.9rem 0; }
.topbar-note { font-size: 0.94rem; color: rgba(255,255,255,0.8); }
.topbar-actions a { font-weight: 700; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 1.5rem 0 5rem;
}
.hero-media, .hero-overlay {
  position: absolute; inset: 0;
}
.hero-media {
  overflow: hidden;
  transform: scale(1.04);
}
.hero-media::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2,8,16,0.38), rgba(2,8,16,0.82)),
    radial-gradient(circle at 18% 20%, rgba(213,164,76,0.16), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(12,122,191,0.22), transparent 24%);
  z-index: 1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(7,17,27,0.1), rgba(7,17,27,0.35));
}
/* ── SITE HEADER (topbar + nav birleşik) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}
.site-header .topbar {
  position: relative;
  z-index: 1;
}
.site-header .nav-wrapper {
  position: relative;
}

/* ── NAV WRAPPER ── */
.nav-wrapper {
  position: relative;
  z-index: 200;
  width: 100%;
  background: #07111b;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 62px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  margin: 0 auto;
  box-shadow: none;
  border: none;
  width: min(1180px, calc(100% - 3rem));
  gap: 0;
}
.nav-main-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  grid-column: 1;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  white-space: nowrap;
}
.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.brand strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: white;
  line-height: 1.2;
  white-space: nowrap;
}
.brand span {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}
.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 2 / 4;
  height: 62px;
  gap: 0;
}
.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 0.8rem;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: rgba(255,255,255,0.9); }
.nav-links a.active { color: #d5a44c; border-bottom-color: #d5a44c; }
.nav-side {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 1rem;
  margin-left: 0.5rem;
}
.nav-cta {
  padding: 0.42rem 1rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  white-space: nowrap;
}
.nav-panel-close { display: none; }
.nav-toggle {
  display: none;
  width: 2rem;
  height: 2rem;
  padding: 0.4rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.language-switcher {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
.lang-btn.is-active { background: white; color: var(--primary-deep); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, var(--accent), #f0c36e); color: #14202c; }
.button-secondary { border: 1px solid rgba(255,255,255,0.28); color: white; background: rgba(255,255,255,0.08); }
.full { width: 100%; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: start;
}
.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.eyebrow.dark { color: var(--primary-deep); }
.hero-copy h1 { font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1.03; max-width: 12ch; margin-bottom: 1rem; }
.hero-lead { max-width: 60ch; font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.84); margin-bottom: 2rem; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  border-radius: 24px;
  padding: 1.2rem;
  margin-top: 2rem;
}
.trust-bar strong, .metric-card strong { display: block; margin-bottom: 0.45rem; }
.trust-bar span { color: rgba(255,255,255,0.76); font-size: 0.94rem; line-height: 1.6; }

.booking-card {
  color: var(--text);
  border-radius: 30px;
  padding: 1.7rem;
}
.card-tag {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
.pill {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(12,122,191,0.1);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 700;
}
.booking-card h2 { font-size: 2rem; line-height: 1.15; margin: 0.75rem 0; }
.booking-intro, .booking-note { color: var(--muted); line-height: 1.7; }
.booking-form { display: grid; gap: 1rem; margin-top: 1.25rem; }
.booking-form label { display: grid; gap: 0.55rem; font-weight: 600; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f8fbfe;
  color: var(--text);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
}
.booking-form textarea { resize: vertical; }

.metrics-grid, .tour-grid, .faq-grid { display: grid; gap: 1.4rem; }
.metrics-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.metric-card, .tour-card, .feature-card, .faq-item {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(16, 40, 59, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.metric-card { padding: 1.6rem; }
.metric-card span {
  display: inline-flex; width: 2.3rem; height: 2.3rem; align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(12,122,191,0.08); color: var(--primary-deep); font-weight: 800; margin-bottom: 1rem;
}
.metric-card p, .feature-card p, .faq-item p, .tour-card p, .section-heading p { color: var(--muted); line-height: 1.75; }
.section-heading { margin-bottom: 2rem; }
.section-heading h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.1; margin-bottom: 0.75rem; }
.narrow { max-width: 720px; }
.split-section, .route-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); gap: 2rem; align-items: center; }
.feature-stack { display: grid; gap: 1rem; }
.feature-card { padding: 1.7rem; }
.feature-card.dark { background: linear-gradient(180deg, #0c1d2f, #10283e); color: white; }
.feature-card.dark p { color: rgba(255,255,255,0.78); }
.feature-card.dark .card-tag { color: #f2cc86; }

.tour-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.tour-card { padding: 1.8rem; }
.tour-card.featured { background: linear-gradient(180deg, #10304b, #0d2235); color: white; }
.tour-card.featured p, .tour-card.featured li, .tour-card.featured .tour-label { color: rgba(255,255,255,0.82); }
.tour-label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); }
.tour-card ul { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--muted); display: grid; gap: 0.65rem; }

.route-band {
  background: linear-gradient(135deg, #0c1c2b 0%, #12324c 100%);
  color: white;
}
.route-grid { align-items: start; }
.timeline {
  border-radius: 32px;
  padding: 1.6rem;
  color: var(--text);
}
.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item span {
  width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 18px; background: rgba(12,122,191,0.1); color: var(--primary-deep); font-weight: 800;
}

.split-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: end; }
.gallery-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }
.scenic-a { background-image: url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1200&q=80'); }
.scenic-b { background-image: url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=1200&q=80'); }
.review-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.25rem;
}
.review-summary h3 { margin: 0.4rem 0 0.75rem; font-size: 1.5rem; }
.review-summary p { margin-bottom: 0; color: var(--muted); line-height: 1.75; }
.review-score-stack { display: grid; gap: 1rem; }
.review-score-card {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(12,122,191,0.08);
  border: 1px solid rgba(16, 40, 59, 0.08);
}
.review-score-card strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.45rem;
  color: var(--primary-deep);
}
.review-score-card span { color: var(--muted); line-height: 1.6; }
.gallery-meta-row { display:flex; justify-content:space-between; gap:1rem; align-items:center; flex-wrap:wrap; margin-bottom:1rem; }
.gallery-status, .gallery-last-updated { color: var(--muted); font-size: 0.95rem; }
.gallery-status { font-weight: 700; color: var(--primary-deep); }
.gallery-filter { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.gallery-filter-btn {
  border: 1px solid rgba(16, 40, 59, 0.1);
  background: rgba(255,255,255,0.75);
  color: var(--primary-deep);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.gallery-filter-btn.is-active { background: linear-gradient(135deg, var(--primary-deep), var(--primary)); color: white; }
.tripadvisor-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.ta-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(16, 40, 59, 0.08);
  box-shadow: var(--shadow);
}
.ta-card[hidden] { display: none; }
.ta-media {
  position: relative;
  aspect-ratio: 4 / 3.3;
  background-size: cover;
  background-position: center;
  background-color: #dceaf5;
}
.ta-media img, .ta-video video { width: 100%; height: 100%; display: block; object-fit: cover; }
.ta-video { overflow: hidden; background: #06111d; }
.ta-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(7,17,27,0.72);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ta-content { display: grid; gap: 0.75rem; padding: 1.2rem; }
.ta-content.compact { padding-top: 0; }
.ta-content h3, .ta-card-review h3 { margin: 0; font-size: 1.2rem; }
.ta-content p, .ta-card-review p { margin: 0; color: var(--muted); line-height: 1.7; }
.ta-meta { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); }
.ta-card-review { padding: 1.2rem; display: grid; gap: 1rem; }
.ta-review-head { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.ta-review-head strong { display: block; margin-bottom: 0.35rem; }
.ta-stars { color: #12b886; font-size: 1.1rem; letter-spacing: 0.08em; }
.ta-quote-block {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: 1.4rem;
  color: white;
  background: linear-gradient(135deg, #10304b, #0d2235);
}
.ta-quote-block p { font-size: 1.35rem; line-height: 1.5; color: white; }
.ta-quote-block span { color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; }

.faq-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

.faq-item { padding: 1.5rem; }

.site-footer {
  background:
    radial-gradient(circle at top, rgba(205, 168, 97, 0.18), transparent 30%),
    linear-gradient(180deg, #08131f 0%, #050c15 100%);
  color: rgba(255,255,255,0.84);
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-shell {
  padding: 2rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 1.3rem;
  padding-bottom: 1.5rem;
}
.footer-card {
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
}
.footer-card-brand {
  gap: 1rem;
  display: grid;
}
.footer-brand {
  color: white;
  margin-bottom: 0.25rem;
}
.footer-brand-block { max-width: 34rem; }
.footer-text {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin: 0;
}
.footer-highlight {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(205, 168, 97, 0.14));
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-highlight-badge {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.footer-cta-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.footer-cta:hover {
  transform: translateY(-1px);
}
.footer-cta-primary {
  background: linear-gradient(135deg, #d7b16a, #f3dfb0);
  color: #08131f;
}
.footer-cta-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-title {
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.footer-links {
  display: grid;
  gap: 0.8rem;
}
.footer-links a, .footer-links span {
  color: rgba(255,255,255,0.76);
}
.footer-links-quick a,
.footer-contact a,
.footer-contact span {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}
.footer-links a:hover, .footer-bottom a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.58);
}
.footer-bottom a {
  color: rgba(255,255,255,0.84);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero-grid, .split-section, .route-grid, .metrics-grid, .tour-grid, .faq-grid, .footer-grid, .tripadvisor-gallery, .review-summary {
    grid-template-columns: 1fr;
  }

  .nav {
    display: grid;
    align-items: stretch;
  }

  .nav-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links, .nav-side {
    justify-content: center;
  }

  .trust-bar { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 1.25rem, 100%); }
  .section { padding: 3.5rem 0; }
  .hero { padding: 1rem 0 4rem; }
  .nav { height: 54px; }
  .nav-main-row {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }
  .nav-toggle { display: inline-flex; flex-shrink: 0; }
  .nav-panel {
    display: none;
    position: fixed;
    top: 54px;
    left: 0; right: 0;
    background: #07111b;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem 1.25rem 1.25rem;
    z-index: 199;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }
  .nav-panel.is-open { display: flex; flex-direction: column; height: auto; justify-content: flex-start; }
  .nav-panel-close {
    display: flex;
    align-self: flex-end;
    margin-left: auto;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    border-radius: 6px;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .nav-links {
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0 0 0.75rem;
    height: auto;
    gap: 0.1rem;
  }
  .nav-links a {
    height: auto;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: none;
    border-left: 2px solid transparent;
    background: transparent;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.05); color: white; border-bottom: none; }
  .nav-links a.active {
    color: #d5a44c;
    border-left-color: #d5a44c;
    background: rgba(213,164,76,0.06);
    border-bottom: none;
  }
  .nav-side {
    width: 100%;
    margin: 0;
    padding: 0.75rem 0 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-direction: column;
    gap: 0.5rem;
  }
  .language-switcher {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 20px;
  }
  .lang-btn { flex: 1 1 calc(25% - 0.35rem); min-width: 3.4rem; }
  .button, .nav-cta { width: 100%; text-align: center; }
  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    max-width: none;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.7;
  }
  .booking-card,
  .tour-card,
  .feature-card,
  .faq-item,
  .metric-card,
  .timeline {
    padding: 1.25rem;
    border-radius: 24px;
  }
  .booking-head,
  .topbar-inner,
  .topbar-actions,
  .hero-actions,
  .split-heading,
  .footer-bottom {
    align-items: stretch;
  }
  .topbar {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .timeline-item {
    grid-template-columns: 46px 1fr;
    gap: 0.85rem;
  }
  .timeline-item span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
  .footer-shell {
    padding: 1.25rem 0 1rem;
  }
  .footer-grid {
    gap: 1rem;
    padding-bottom: 1.2rem;
  }
  .footer-card {
    padding: 1.1rem;
    border-radius: 24px;
  }
  .footer-highlight {
    padding: 0.95rem;
    border-radius: 20px;
  }
  .footer-cta-row {
    flex-direction: column;
  }
  .footer-cta {
    width: 100%;
  }
  .footer-links-quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-links-quick a,
  .footer-contact a,
  .footer-contact span {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 1rem;
  }
}

@media (max-width: 720px) {
  .gallery-meta-row { align-items: flex-start; }
}

.ga-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #ddd8ce;
}
.ga-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ga-thumb:hover img { transform: scale(1.05); }
.ga-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  border-radius: 10px;
}
.ga-thumb:hover .ga-thumb-overlay { background: rgba(0,0,0,0.12); }

#ga-top .ga-thumb:first-child { aspect-ratio: 3/2; }
#ga-top > div:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
#ga-top > div:last-child .ga-thumb { aspect-ratio: 1/1; }
#ga-bottom .ga-thumb { aspect-ratio: 1/1; }

@media (max-width: 768px) {
  #ga-top { grid-template-columns: 1fr !important; }
  #ga-top .ga-thumb:first-child { aspect-ratio: 16/9; }
  #ga-top > div:last-child { grid-template-columns: repeat(2, 1fr); }
  #ga-bottom { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  #ga-bottom { grid-template-columns: 1fr !important; }
}


/* ── PWA Install Modal ── */
.pwa-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: flex-end;
  justify-content: center;
}
.pwa-modal--open { display: flex; }
.pwa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pwa-modal__card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #07111b;
  border-radius: 28px 28px 0 0;
  padding: 32px 28px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: pwaSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes pwaSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.pwa-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.pwa-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.pwa-modal__logo {
  width: 64px; height: 64px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  padding: 6px;
}
.pwa-modal__name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: white;
}
.pwa-modal__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.pwa-modal__rating {
  font-size: 0.78rem;
  color: #d5a44c;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.pwa-modal__rating span { color: rgba(255,255,255,0.7); }
.pwa-modal__features {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pwa-modal__features li {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pwa-check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #0c7abf, #0a5f96);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.pwa-modal__btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d5a44c, #b8882e);
  color: #07111b;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(213,164,76,0.3);
  transition: opacity 0.2s, transform 0.2s;
}
.pwa-modal__btn:hover { opacity: 0.9; transform: translateY(-1px); }
.pwa-modal__skip {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.pwa-ios-hint { flex-direction: column; gap: 16px; }
.pwa-ios-hint__title {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
.pwa-ios-step {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.pwa-ios-step__num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #0c7abf, #0a5f96);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.nav-install-link { color: #d5a44c !important; }
@media (min-width: 721px) { .nav-install-link { display: none !important; } }

/* ── Hero Scroll Indicator ── */
.hero-scroll-hint {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin: 28px 0 0;
  color: rgba(255,255,255,0.35);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  animation: scrollFade 2.5s ease-in-out infinite;
}
.hero-scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex; justify-content: center;
  padding-top: 5px;
}
.hero-scroll-dot {
  width: 4px; height: 7px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes scrollFade {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
@media (max-width: 720px) { .hero-scroll-hint { display: none; } }

/* ── WhatsApp Floating Button ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9990;
  display: flex; align-items: center; gap: 10px;
  background: #25d366;
  color: white;
  font-size: 14px; font-weight: 700;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waAppear 0.5s 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
  color: white;
}
.wa-float svg { flex-shrink: 0; }
.wa-float span { white-space: nowrap; }
@keyframes waAppear {
  from { transform: scale(0.5) translateY(40px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
@media (max-width: 720px) {
  .wa-float { bottom: 20px; right: 16px; padding: 13px 16px; }
  .wa-float span { display: none; }
}

/* ── Cookie Consent Banner ── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9995;
  background: rgba(7,17,27,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p {
  flex: 1; margin: 0;
  font-size: 13px; color: rgba(255,255,255,0.7);
  line-height: 1.6; min-width: 200px;
}
.cookie-bar p a { color: #d5a44c; text-decoration: underline; }
.cookie-bar-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-accept {
  background: #d5a44c; color: #07111b;
  border: none; border-radius: 8px;
  padding: 9px 20px; font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
}
.cookie-btn-decline {
  background: transparent; color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  padding: 9px 16px; font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
}
@media (max-width: 600px) {
  .cookie-bar { flex-direction: column; align-items: stretch; padding: 14px 16px; }
  .cookie-bar-btns { justify-content: flex-end; }
}

/* ── Müşteri Yorumları ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.review-header { display: flex; align-items: center; justify-content: space-between; }
.review-source {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}
.review-source--google  { background: #e8f0fe; color: #1a73e8; }
.review-source--ta      { background: #e6f4ea; color: #1e7e34; }
.review-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.review-title { font-weight: 700; color: #10283b; font-size: 15px; line-height: 1.3; }
.review-body  { color: #475569; font-size: 13.5px; line-height: 1.7; flex: 1; margin: 0; }
.review-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid #f1f5f9; }
.review-author { font-size: 13px; font-weight: 600; color: #0c7abf; }
.review-date   { font-size: 12px; color: #94a3b8; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
