/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===========================
   COLORS & VARIABLES
   =========================== */
:root {
  /* Logo bazli renk paleti (cyan/indigo) */
  --gold: #00AEEF;        /* vurgu rengi (logo cyan) */
  --gold-light: #5FD0FF; /* vurgu acik ton */
  --navy: #0B1B3A;       /* ana koyu mavi */
  --navy-mid: #0E3A73;   /* ikinci koyu mavi */
  --blue: #0F5FA8;       /* ara mavi */
  --cream: #faf8f3;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
em { font-style: italic; color: var(--gold); }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-sub { color: var(--gray); margin-top: 12px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn-sm {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s;
}
.btn-sm:hover { background: var(--blue); transform: translateY(-1px); }

.btn-dest {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 20px;
  transition: all 0.25s;
}
.btn-dest:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.03em;
}
.btn-submit:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  transition: all 0.35s;
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  min-width: 0;
  margin-left: -10px;
  margin-right: 22px;
}
.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}

.logo-icon { color: var(--gold); font-size: 1rem; }
.logo strong { font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  min-width: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Dropdown menu (Destinations) */
.nav-links .has-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-caret {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.7;
  transition: transform 0.22s, opacity 0.22s;
}

.has-dropdown:hover .nav-dropdown-caret,
.has-dropdown:focus-within .nav-dropdown-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow:
    0 12px 32px rgba(11, 27, 58, 0.18),
    0 2px 6px rgba(11, 27, 58, 0.06);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 50;
  border-top: 3px solid var(--gold);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 0;
  right: 0;
  height: 17px;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--gold);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
  margin: 0;
  padding: 0;
}

.nav-dropdown a {
  display: block;
  padding: 11px 22px;
  color: var(--navy) !important;
  font-size: 0.9rem !important;
  font-weight: 500;
  letter-spacing: 0;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  border-left: 2px solid transparent;
}

.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--gold) !important;
  border-left-color: var(--gold);
  padding-left: 26px;
}

/* Mobile sub-links (under Destinations) */
.mob-sublinks {
  display: flex;
  flex-direction: column;
  margin: -6px 0 0;
  padding: 0 0 6px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid rgba(0, 174, 239, 0.4);
  margin-left: 6px;
}

.mob-sublink {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  font-weight: 400;
  padding: 11px 0 11px 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  transition: color 0.18s, padding-left 0.18s;
  position: relative;
}

.mob-sublink::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.mob-sublink:last-child {
  border-bottom: none;
}

.mob-sublink:hover,
.mob-sublink:active {
  color: var(--gold);
  padding-left: 16px;
}
.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }
.nav-whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-whatsapp-btn:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  flex-shrink: 0;
}

.lang-btn {
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu: keep navbar above content so the hamburger remains clickable. */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 88px 24px calc(32px + env(safe-area-inset-bottom, 0));
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateY(0); }

.mobile-lang {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-lang .lang-btn {
  min-width: 52px;
  min-height: 44px;
  padding: 10px 18px;
}
.mob-link {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}
.mob-link.highlight {
  color: var(--gold);
  font-weight: 700;
  border-bottom: none;
  margin-top: 8px;
}

/* ===========================
   HERO
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/arkaplan.png") no-repeat center / cover;
  z-index: 0;
}
/* Decorative silhouette-inspired shapes */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400'%3E%3Cpath fill='rgba(201,168,76,0.06)' d='M0,250 Q100,180 180,220 Q240,250 280,200 Q320,150 370,180 Q400,200 420,160 Q440,120 480,150 Q520,180 550,120 Q570,80 600,110 Q640,150 680,90 Q700,60 720,80 Q740,100 760,60 Q780,20 810,50 Q840,80 880,40 Q910,10 940,30 Q970,50 1000,20 Q1040,-10 1080,30 Q1120,70 1160,30 Q1200,-10 1440,60 L1440,400 L0,400 Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 760px;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-content h1 {
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Stats bar */
.stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 24px;
}
.stat {
  text-align: center;
  padding: 0 48px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
}
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===========================
   SERVICES
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.service-card.featured .card-link { color: var(--gold); }
.service-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.card-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: letter-spacing 0.2s;
}
.card-link:hover { letter-spacing: 0.08em; }

/* ===========================
   DESTINATIONS
   =========================== */
.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.dest-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-img {
  height: 240px;
  position: relative;
}
.dest-istanbul .dest-img {
  background:
    linear-gradient(160deg, rgba(15,95,168,0.35) 0%, rgba(11,27,58,0.30) 100%),
    url("images/istanbul.PNG") center/cover no-repeat;
}
/* Istanbul mosque silhouette */
.dest-istanbul .dest-img::after {
  content: none;
}
.dest-kapadokya .dest-img {
  background:
    linear-gradient(160deg, rgba(180,80,20,0.26) 0%, rgba(100,50,10,0.25) 100%),
    url("images/kapadokya.PNG") center/cover no-repeat;
}
/* Cappadocia fairy chimney silhouette */
.dest-kapadokya .dest-img::after {
  content: none;
}

.dest-info { padding: 32px; }

.dest-card-clickable { position: relative; cursor: pointer; }
.dest-card-link {
  color: inherit;
  text-decoration: none;
  font: inherit;
  outline: none;
}
.dest-card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 20px;
}
.dest-card-clickable:hover .dest-card-link { color: var(--gold); }
.dest-card-link:focus-visible::before {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.dest-card-clickable .dest-card-cta {
  position: relative;
  z-index: 2;
}
.dest-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(201,168,76,0.3);
}
.dest-info h3 { font-size: 1.8rem; margin-bottom: 12px; }
.dest-info p { color: var(--gray); font-size: 0.95rem; line-height: 1.65; margin-bottom: 16px; }
.dest-highlights { display: flex; flex-direction: column; gap: 8px; }
.dest-highlights li {
  font-size: 0.88rem;
  color: var(--navy);
  padding-left: 18px;
  position: relative;
}
.dest-highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 3px;
}

/* ===========================
   TOURS
   =========================== */
.tour-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  background: #f3f4f6;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.25s;
}
.tab-btn:hover { background: var(--navy); color: #fff; }
.tab-btn.active { background: var(--navy); color: #fff; }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tour-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card.hidden { display: none; }

/* Clickable card — entire box becomes a link via stretched anchor */
.tour-card-clickable {
  position: relative;
  cursor: pointer;
}
.tour-card-clickable .tour-body h4 {
  margin-bottom: 10px;
}
.tour-card-link {
  color: inherit;
  text-decoration: none;
  font: inherit;
  outline: none;
}
.tour-card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
}
.tour-card-clickable:hover .tour-card-link {
  color: var(--gold);
}
.tour-card-link:focus-visible::before {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.tour-card-clickable .tour-card-book-btn,
.tour-card-clickable .tour-price {
  position: relative;
  z-index: 2;
}
.tour-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
}
.tour-img-1 { background: linear-gradient(135deg, #1a3a6b, #0f3460, #16213e); }
.tour-img-1 { background: linear-gradient(135deg, #0E3A73, #0F5FA8, #0B1B3A); }
.tour-img-2 { background: linear-gradient(135deg, #0F4C5F, #0E3A73, #00AEEF); }
.tour-img-3 { background: linear-gradient(135deg, #2E2A7B, #4B2CA8, #0B1B3A); }
.tour-img-4 { background: linear-gradient(135deg, #154360, #0E3A73, #00AEEF); }
.tour-img-5 { background: linear-gradient(135deg, #784212, #935116, #a04000); }
.tour-img-6 { background: linear-gradient(135deg, #0B1B3A, #0E3A73, #08122A); }
.tour-img-7 { background: linear-gradient(135deg, #0B1B3A, #2E2A7B, #00AEEF); }
.tour-img-8 { background: linear-gradient(135deg, #0E3A73, #0F5FA8, #5FD0FF); }
.tour-img-9 { background: linear-gradient(135deg, #08122A, #4B2CA8, #00AEEF); }
.tour-img-10 { background: linear-gradient(135deg, #0F5FA8, #2E2A7B, #08122A); }

/* Decorative pattern overlays on tour images */
.tour-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='rgba(255,255,255,0.04)' fill-rule='evenodd'%3E%3Cpath d='M20 20.5C20 20.5 20 20 20 20L30 10L30 30L20 20.5Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}
.tour-duration {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}
.tour-body { padding: 24px; }
.tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.tour-meta span:first-child { color: var(--gold); }
.tour-meta span:last-child { color: var(--gray); }
.tour-body h4 { margin-bottom: 10px; }
.tour-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.tour-price small { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--gray); font-weight: 400; }

/* ===========================
   WHY US
   =========================== */
.why-section { background: var(--navy); color: #fff; }
.why-section .container {
  position: relative;
}
.why-tripadvisor-btn {
  position: absolute;
  top: 0;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #00aa6c;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(0, 170, 108, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  z-index: 2;
}
.why-tripadvisor-btn img {
  width: 108px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.why-tripadvisor-btn:hover {
  transform: translateY(-2px);
  background: #00945f;
  box-shadow: 0 16px 34px rgba(0, 170, 108, 0.36);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-eyebrow { color: var(--gold); }
.why-text h2 { color: #fff; margin-bottom: 20px; }
.why-text > p { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1.02rem; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong { display: block; color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.why-item span { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* Review cards */
.review-cards { position: relative; height: 400px; }
.review-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  max-width: 300px;
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px) !important; }
.review-card-2 { top: 100px; right: 0; background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); }
.review-card-3 { bottom: 0; left: 40px; }
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { color: rgba(255,255,255,0.75); font-size: 0.875rem; line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}
.reviewer strong { display: block; color: #fff; font-size: 0.875rem; }
.reviewer span { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

.why-tripadvisor-reviews {
  position: relative;
  min-height: 400px;
}
.why-ta-card {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 320px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.18);
  transition:
    top 0.65s ease,
    left 0.65s ease,
    right 0.65s ease,
    transform 0.65s ease,
    opacity 0.65s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
.why-ta-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,170,108,0.34);
}
.why-ta-card--front:hover {
  transform: translate(0, -4px) scale(1);
}
.why-ta-card--middle:hover {
  transform: translate(0, -4px) scale(0.96);
}
.why-ta-card--back:hover {
  transform: translate(18px, 4px) scale(0.92);
}
.why-ta-card--front {
  top: 0;
  left: 0;
  right: auto;
  z-index: 3;
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.why-ta-card--middle {
  top: 98px;
  left: auto;
  right: 0;
  z-index: 2;
  opacity: 0.9;
  transform: translate(0, 0) scale(0.96);
  background: rgba(0,170,108,0.1);
  border-color: rgba(0,170,108,0.24);
}
.why-ta-card--back {
  top: 138px;
  left: 40px;
  right: auto;
  z-index: 1;
  opacity: 0.72;
  transform: translate(18px, 8px) scale(0.92);
}
.why-ta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.why-ta-stars {
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 2px;
}
.why-ta-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 32px;
  border-radius: 999px;
  background: #00aa6c;
  flex: 0 0 auto;
}
.why-ta-logo img {
  width: 72px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.why-ta-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
}
.why-ta-text {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.76);
  font-size: 0.86rem;
  line-height: 1.65;
  font-style: italic;
}
.why-ta-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-ta-avatar {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.why-ta-user strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
}
.why-ta-user span {
  color: rgba(255,255,255,0.52);
  font-size: 0.74rem;
}
.why-ta-loading {
  color: rgba(255,255,255,0.68);
  margin: 0;
}

/* ===========================
   ABOUT
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-block { position: relative; height: 460px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 85%;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(11,27,58,0.32) 0%, rgba(15,95,168,0.20) 100%),
    url("images/ist.png") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-img-main::after {
  content: none;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(120,66,18,0.35) 0%, rgba(147,81,22,0.22) 100%),
    url("images/kap.png") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-badge {
  position: absolute;
  top: 40px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  z-index: 2;
}
.about-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; }
.about-badge span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }

.about-text .section-eyebrow { display: block; }
.about-text h2 { margin: 12px 0 20px; }
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.75; }
.about-facts {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #e8e8e8;
}
.fact strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.fact span { font-size: 0.8rem; color: var(--gray); letter-spacing: 0.04em; }

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.c-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; color: var(--gray); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: var(--navy); font-weight: 500; font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 32px;
  transition: all 0.25s;
  width: fit-content;
}
.whatsapp-btn:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* Form */
.contact-form {
  background: var(--cream);
  border-radius: 20px;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 20px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo-light { margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,0.5); max-width: 260px; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--navy); }

.social-links a[aria-label="TripAdvisor"] {
  width: 70px;
  padding: 0 9px;
}

.social-tripadvisor-logo {
  display: block;
  width: 52px;
  height: auto;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

/* ===========================
   FOOTER — Rich variant (2-col)
   =========================== */
.footer-rich .footer-grid-2 {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
}

.footer-company-line {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
  line-height: 1.6;
  max-width: none;
}

.footer-divider {
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 16px 0;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.footer-contact-list li a:hover {
  color: var(--gold);
}

.footer-ic {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 79, 79, 0.18);
  color: #ff6b6b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.footer-contact-list li:nth-child(2) .footer-ic {
  background: rgba(255, 79, 79, 0.18);
  color: #ff6b6b;
}

.footer-contact-list li:nth-child(3) .footer-ic {
  background: rgba(255, 79, 79, 0.18);
  color: #ff6b6b;
}

.footer-col-company ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-company ul li a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-col-company ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* ===========================
   PARTNERS STRIP (homepage)
   =========================== */
.partners-strip {
  background: #0a0e18;
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.partners-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='0.6' d='M0 40 Q30 20 60 40 T120 40 M0 80 Q40 60 80 80 T120 80 M20 0 Q40 30 20 60 T20 120 M80 0 Q100 40 80 80 T80 120'/%3E%3C/svg%3E");
  pointer-events: none;
}

.partners-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px 40px;
}

.partners-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #fff;
  margin: 0;
  transform: translateX(-10px);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 40px;
}

.partner-logo-link {
  display: flex;
  align-items: center;
  opacity: 0.92;
  transition: opacity 0.2s, transform 0.2s;
}

.partner-logo-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.partner-logo-link img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
  filter: brightness(1.05);
}

/* ===========================
   FAQ PAGE
   =========================== */
.faq-section {
  background: #f8fbff;
}

.faq-wrap {
  max-width: 900px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(11, 27, 58, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 27, 58, 0.05);
}

.faq-question {
  width: 100%;
  border: none;
  background: #fff;
  color: var(--navy);
  text-align: left;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 174, 239, 0.12);
  color: #0e3a73;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--gray);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 260px;
  opacity: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ===========================
   FLOATING QUOTE (corner)
   =========================== */
.quote-dock {
  position: fixed;
  z-index: 950;
  right: max(16px, env(safe-area-inset-right, 0));
  bottom: max(20px, env(safe-area-inset-bottom, 0));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: "Inter", sans-serif;
}

.quote-dock-toggle {
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 174, 239, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.quote-dock-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.quote-dock-panel {
  width: min(360px, calc(100vw - 32px));
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 27, 58, 0.08);
  padding: 22px 20px 20px;
  position: relative;
}

.quote-dock-panel[hidden] {
  display: none !important;
}

.quote-dock-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray);
  border-radius: 8px;
}

.quote-dock-close:hover {
  background: var(--gray-light);
  color: var(--navy);
}

.quote-form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 40px 16px 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-corner-form .quote-field {
  margin-bottom: 14px;
}

.quote-corner-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.quote-corner-form .req {
  color: #c62828;
}

.quote-corner-form input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid rgba(11, 27, 58, 0.2);
  background: #f3f4f6;
  font-size: 0.95rem;
  color: var(--navy);
}

.quote-corner-form input:focus {
  outline: 2px solid rgba(0, 174, 239, 0.45);
  outline-offset: 1px;
  border-color: var(--gold);
  background: #fff;
}

.quote-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quote-recaptcha-mount {
  margin: 12px 0 14px;
  min-height: 0;
}

.quote-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}

.quote-submit:hover:not(:disabled) {
  background: var(--gold-light);
}

.quote-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.quote-form-msg {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--gray);
  min-height: 1.2em;
}

.quote-dock.is-open .quote-dock-toggle {
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.25);
}

/* TURSAB badge (still styled if re-enabled in HTML) */
.footer-tursab-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.tursab-card {
  display: block;
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  color: #1a1a2e;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.tursab-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
}

.tursab-card-stripe {
  height: 4px;
  background: linear-gradient(90deg, #d3001a 0%, #a30015 100%);
}

.tursab-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 6px;
  gap: 12px;
}

.tursab-logo {
  font-family: "Inter", "Arial Black", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #1a1a2e;
  line-height: 1;
}

.tursab-search-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d3001a;
}

.tursab-card-banner {
  background: #d3001a;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 7px 12px;
  text-transform: uppercase;
}

.tursab-card-body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 14px;
}

.tursab-card-text {
  flex: 1;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #4b5563;
  margin: 0;
}

.tursab-card-text strong {
  color: #1a1a2e;
  font-weight: 800;
}

.tursab-card-licence {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  border-left: 1px solid #e5e7eb;
  padding-left: 12px;
}

.tursab-licence-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  line-height: 1.2;
}

.tursab-licence-num {
  font-family: "Inter", "Arial Black", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #d3001a;
  line-height: 1;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.35); }
.footer-langs { display: flex; gap: 12px; }
.lang {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
.lang:hover, .lang.active { color: var(--gold); background: rgba(201,168,76,0.1); }

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   PAGE HELPERS (alt sayfalar)
   =========================== */
.page-tours {
  padding-top: 130px;
}
.page-blog {
  padding-top: 60px;
}

/* ===========================
   LEGAL / PRIVACY PAGES
   =========================== */
.legal-hero {
  position: relative;
  padding: 150px 0 70px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, var(--blue) 100%);
  color: #fff;
}

.legal-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/arkaplan.png") no-repeat center / cover;
  opacity: 0.18;
  z-index: 0;
}

.legal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,27,58,0.72) 0%, rgba(11,27,58,0.85) 100%);
  z-index: 1;
}

.legal-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.legal-hero h1 {
  margin: 12px auto 18px;
  max-width: 800px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.legal-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 660px;
  margin: 0 auto 24px;
}

.legal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.legal-breadcrumb a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}

.legal-breadcrumb a:hover {
  color: var(--gold-light);
}

.legal-breadcrumb span[aria-hidden="true"] {
  color: rgba(255,255,255,0.4);
}

.legal-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 56px;
  align-items: start;
}

.legal-article {
  min-width: 0;
}

.legal-block {
  margin-bottom: 44px;
  padding-top: 8px;
  scroll-margin-top: 100px;
}

.legal-block h2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(11,27,58,0.08);
  line-height: 1.3;
}

.legal-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold);
  flex-shrink: 0;
  background: rgba(0,174,239,0.1);
  padding: 4px 10px;
  border-radius: 6px;
  line-height: 1.2;
}

.legal-block p {
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-block p strong {
  color: var(--navy);
  font-weight: 700;
  display: inline-block;
  min-width: 38px;
  margin-right: 4px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  margin: 8px 0 18px;
  padding: 0 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  position: relative;
  padding: 12px 16px 12px 42px;
  background: var(--cream);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  font-size: 0.94rem;
  color: #4b5563;
  line-height: 1.65;
}

.legal-list li strong {
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--navy);
  font-weight: 700;
}

.legal-footer-note {
  margin-top: 56px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(0,174,239,0.06) 0%, rgba(11,27,58,0.04) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(0,174,239,0.15);
  text-align: center;
}

.legal-footer-note p {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
}

.legal-footer-note a {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s;
}

.legal-footer-note a:hover {
  color: var(--gold);
}

/* TOC sidebar */
.legal-toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid rgba(11,27,58,0.08);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  box-shadow: 0 4px 18px rgba(11,27,58,0.05);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.legal-toc-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-toc ol li {
  counter-increment: toc;
}

.legal-toc ol li a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 8px;
  font-size: 0.84rem;
  color: var(--gray);
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  line-height: 1.4;
}

.legal-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(11,27,58,0.35);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.legal-toc ol li a:hover {
  background: var(--cream);
  color: var(--navy);
}

.legal-toc ol li a:hover::before {
  color: var(--gold);
}

@media (max-width: 960px) {
  .legal-section .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-toc {
    position: static;
    max-height: none;
    order: -1;
  }
  .legal-toc ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 8px;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 120px 0 56px;
  }
  .legal-block h2 {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1.2rem;
  }
  .legal-num {
    font-size: 0.78em;
  }
  .legal-block p {
    font-size: 0.92rem;
    line-height: 1.75;
  }
  .legal-list li {
    padding: 12px 14px 12px 38px;
  }
  .legal-toc ol {
    grid-template-columns: 1fr;
  }
}

/* Narrow legal layout (no TOC, single column) */
.legal-section-narrow .container {
  display: block;
}
.legal-article-full {
  max-width: 820px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 44px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(0,174,239,0.06) 0%, rgba(11,27,58,0.02) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.legal-intro strong {
  color: var(--navy);
  font-weight: 700;
}

/* Cancellation tier cards */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0 28px;
}

.cancel-tier {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11,27,58,0.08);
  border-radius: 14px;
  padding: 20px 22px 22px;
  box-shadow: 0 4px 18px rgba(11,27,58,0.05);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
}

.cancel-tier::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
  border-radius: 14px 14px 0 0;
}

.cancel-tier-mid::before {
  background: linear-gradient(90deg, #d97706 0%, #f59e0b 100%);
}

.cancel-tier-late::before {
  background: linear-gradient(90deg, #b91c1c 0%, #dc2626 100%);
}

.cancel-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11,27,58,0.1);
  border-color: rgba(0,174,239,0.25);
}

.cancel-tier-window {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16a34a;
  background: rgba(22,163,74,0.1);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.cancel-tier-mid .cancel-tier-window {
  color: #d97706;
  background: rgba(217,119,6,0.1);
}

.cancel-tier-late .cancel-tier-window {
  color: #b91c1c;
  background: rgba(185,28,28,0.1);
}

.cancel-tier-fee {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(11,27,58,0.12);
}

.cancel-tier-fee-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cancel-tier-fee-pct {
  font-size: 1.5rem;
  color: var(--gold);
  margin-left: 2px;
}

.cancel-tier-late .cancel-tier-fee-num {
  font-size: 2rem;
  color: #b91c1c;
}

.cancel-tier-fee-label {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.cancel-tier-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.cancel-tier-desc strong {
  color: var(--navy);
  font-weight: 700;
}

/* Info callout */
.legal-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: rgba(0,174,239,0.06);
  border: 1px solid rgba(0,174,239,0.18);
  border-radius: 12px;
  margin-top: 22px;
}

.legal-callout-ic {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  margin-top: 2px;
}

.legal-callout p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #374151;
}

/* Help action buttons */
.legal-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.legal-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  text-decoration: none;
}

.legal-help-btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11,27,58,0.2);
}

.legal-help-btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11,27,58,0.28);
  color: #fff;
}

.legal-help-btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.legal-help-btn-whatsapp:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
  color: #fff;
}

@media (max-width: 768px) {
  .cancel-tiers {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .legal-intro {
    font-size: 1rem;
    padding: 18px 20px;
  }
  .legal-callout {
    padding: 16px 18px;
  }
  .legal-help-btn {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 48px;
  }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1280px) {
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 0.84rem;
  }
  .btn-nav {
    padding: 8px 16px !important;
    font-size: 0.84rem !important;
  }
  .nav-whatsapp-btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .lang-switch {
    margin-left: 10px;
    gap: 6px;
  }
  .lang-btn {
    padding: 5px 9px;
    font-size: 0.72rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .logo-img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 1120px) {
  .nav-inner {
    padding: 0 max(16px, env(safe-area-inset-left, 0)) 0 max(16px, env(safe-area-inset-right, 0));
    gap: 8px;
  }
  #navbar {
    padding: 14px 0;
  }
  #navbar.scrolled {
    padding: 10px 0;
  }
  .nav-links {
    display: none;
  }
  .nav-whatsapp-btn {
    display: none;
  }
  .lang-switch {
    display: none;
  }
  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .logo {
    font-size: 1.05rem;
    gap: 6px;
    min-width: 0;
  }
  .logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(240px, calc(100vw - 100px));
  }
  .logo-img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { padding-top: 42px; }
  .why-tripadvisor-reviews { min-height: 320px; }
  .why-ta-card { max-width: 280px; padding: 22px; }
  .review-cards { height: 280px; }
  .review-card { max-width: 250px; padding: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-block { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-rich .footer-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container { padding-left: max(16px, env(safe-area-inset-left, 0)); padding-right: max(16px, env(safe-area-inset-right, 0)); }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .section-sub { font-size: 1rem; padding: 0 4px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-img { height: 200px; }
  .dest-info { padding: 24px; }
  .dest-info h3 { font-size: clamp(1.35rem, 5vw, 1.8rem); }

  .tours-grid { grid-template-columns: 1fr; }
  .tour-tabs { gap: 6px; margin-bottom: 28px; }
  .tab-btn { padding: 10px 18px; font-size: 0.82rem; min-height: 44px; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 28px 20px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; min-height: 44px; }
  .form-group textarea { min-height: 120px; }

  #hero {
    min-height: min(100dvh, 100vh);
    min-height: 100svh;
  }
  .hero-content {
    padding-top: max(72px, env(safe-area-inset-top, 0));
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-sub { font-size: 1rem; margin-bottom: 28px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
  }

  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
    padding: 18px 12px max(18px, env(safe-area-inset-bottom, 0));
    align-items: stretch;
  }
  .stat {
    padding: 8px 10px;
  }
  .stat strong { font-size: 1.35rem; }
  .stat span { font-size: 0.72rem; line-height: 1.35; }
  .stat-divider { display: none; }

  .about-img-block { height: 260px; }
  .about-badge {
    right: 8px;
    top: 12px;
    padding: 12px 14px;
  }
  .about-badge strong { font-size: 1.35rem; }
  .about-facts { flex-direction: column; gap: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-rich .footer-grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .partners-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .partners-logos {
    gap: 20px 28px;
  }

  .quote-dock {
    right: max(12px, env(safe-area-inset-right, 0));
    bottom: max(12px, env(safe-area-inset-bottom, 0));
  }
  .footer { padding: 56px 0 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding-bottom: max(24px, env(safe-area-inset-bottom, 0)); }
  .why-grid { gap: 32px; }
  .why-tripadvisor-btn {
    position: static;
    margin-bottom: 28px;
  }
  .why-grid {
    padding-top: 0;
  }
  .why-tripadvisor-reviews {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .why-ta-card,
  .why-ta-card:nth-child(2),
  .why-ta-card:nth-child(3) {
    position: static;
    max-width: 100%;
    opacity: 1;
    transform: none;
  }
  .review-cards { height: auto; position: static; display: flex; flex-direction: column; gap: 16px; }
  .review-card, .review-card-2, .review-card-3 { position: static; max-width: 100%; }
  .hero-scroll { display: none; }

  .page-tours { padding-top: 100px; }
  .page-blog { padding-top: 48px; }

  .whatsapp-btn { width: 100%; max-width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .section-header { margin-bottom: 32px; }

  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost { width: 100%; }

  .dest-info { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .tour-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
  .tour-tabs::-webkit-scrollbar { height: 4px; }
  .tour-footer { flex-wrap: wrap; gap: 12px; }
  .tour-footer .btn-sm { flex: 1 1 auto; text-align: center; justify-content: center; min-height: 44px; }

  .stats-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stat { padding: 6px 8px; }

  h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.45rem, 6vw, 2rem); }
}

@media (max-width: 380px) {
  .logo span { max-width: 38vw; font-size: 0.95rem; }
  .tab-btn { padding: 8px 14px; }
}

/* ===========================
   TRUST STRIP
   =========================== */
.trust-strip {
  background: #fff;
  padding: 56px 0;
  border-bottom: 1px solid rgba(11, 27, 58, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-item {
  text-align: center;
  padding: 8px 12px;
}

.trust-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 28px rgba(11, 27, 58, 0.12);
}

.trust-icon svg {
  width: 32px;
  height: 32px;
}

.trust-item--blue .trust-icon { background: linear-gradient(145deg, #2563eb, #1d4ed8); }
.trust-item--green .trust-icon { background: linear-gradient(145deg, #16a34a, #15803d); }
.trust-item--orange .trust-icon { background: linear-gradient(145deg, #ea580c, #c2410c); }
.trust-item--red .trust-icon { background: linear-gradient(145deg, #dc2626, #b91c1c); }

.trust-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 6px;
}

.trust-item--blue .trust-value { color: #2563eb; }
.trust-item--green .trust-value { color: #16a34a; }
.trust-item--orange .trust-value { color: #ea580c; }
.trust-item--red .trust-value { color: #dc2626; }

.trust-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}

.trust-item--blue .trust-title { color: #2563eb; }
.trust-item--green .trust-title { color: #16a34a; }
.trust-item--orange .trust-title { color: #ea580c; }
.trust-item--red .trust-title { color: #dc2626; }

.trust-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 960px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}

@media (max-width: 520px) {
  .trust-strip { padding: 44px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-icon { width: 64px; height: 64px; }
}

/* ===========================
   TRIPADVISOR REVIEWS (homepage)
   =========================== */
.ta-reviews-section {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 48%, #f4f7fb 100%);
}

.ta-reviews-heading {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 2rem;
}

.ta-reviews-loading,
.ta-reviews-error {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
}

.ta-reviews-error a {
  color: var(--blue);
  font-weight: 600;
}

.ta-reviews-summary {
  border: 1px solid rgba(11, 27, 58, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(11, 27, 58, 0.06);
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.ta-reviews-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding: 1rem 1.25rem 0.85rem;
  border-bottom: 1px solid rgba(11, 27, 58, 0.08);
}

.ta-tab {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  background: none;
  border: none;
  padding: 0 0 6px;
  cursor: default;
  border-bottom: 2px solid transparent;
}

.ta-tab--active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.ta-reviews-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1rem 1.25rem 1.15rem;
}

.ta-reviews-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  color: #374151;
}

.ta-reviews-score strong {
  color: var(--navy);
  font-weight: 700;
}

.ta-bubbles {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.ta-bubble {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 170, 108, 0.2);
  border: 1px solid rgba(0, 170, 108, 0.35);
}

.ta-bubble--on {
  background: #00aa6c;
  border-color: #00aa6c;
}

.ta-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.ta-logo-img {
  display: block;
  width: 76px;
  height: auto;
}

.ta-reviews-badge .ta-logo-img {
  width: 82px;
}

.ta-reviews-badge:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.ta-reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.ta-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(11, 27, 58, 0.12);
  background: #fff;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.ta-carousel-btn:hover:not(:disabled) {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.15);
}

.ta-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ta-reviews-viewport {
  overflow: hidden;
  min-width: 0;
}

.ta-reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.ta-review-card {
  flex: 0 0 300px;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(11, 27, 58, 0.1);
  border-radius: 14px;
  padding: 1.25rem 1.2rem 1.1rem;
  box-shadow: 0 4px 20px rgba(11, 27, 58, 0.05);
  display: flex;
  flex-direction: column;
}

.ta-review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.ta-review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.ta-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.ta-review-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}

.ta-review-date {
  font-size: 0.78rem;
  color: var(--gray);
}

.ta-review-platform {
  flex-shrink: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #00aa6c;
  box-shadow: 0 4px 12px rgba(0, 170, 108, 0.22);
}

.ta-review-platform .ta-logo-img {
  width: 64px;
}

.ta-review-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.55rem;
}

.ta-verified {
  line-height: 0;
}

.ta-review-title {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.ta-review-text {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.ta-review-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  margin-top: auto;
}

.ta-review-more:hover {
  color: var(--blue);
  text-decoration: underline;
}

.ta-reviews-footnote {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
}

.ta-reviews-footnote a {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 640px) {
  .ta-reviews-section { padding: 56px 0 64px; }
  .ta-carousel-btn { width: 36px; height: 36px; }
}

.lang-switch,
.mobile-lang,
.footer-langs {
  display: none !important;
}

/* ===========================
   DESTINATION PAGES
   =========================== */
.dest-hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, var(--blue) 100%);
  color: #fff;
  isolation: isolate;
}

.dest-hero-istanbul {
  background:
    linear-gradient(160deg, rgba(11,27,58,0.78) 0%, rgba(15,95,168,0.68) 100%),
    url("images/istanbul.PNG") center/cover no-repeat fixed;
}

.dest-hero-kapadokya {
  background:
    linear-gradient(160deg, rgba(40,15,5,0.78) 0%, rgba(180,80,20,0.55) 100%),
    url("images/kapadokya.PNG") center/cover no-repeat fixed;
}

.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,27,58,0.18) 0%, rgba(11,27,58,0.42) 100%);
  z-index: 0;
}

.dest-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.dest-hero-eyebrow {
  display: inline-block;
  margin: 18px 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 999px;
  background: rgba(11,27,58,0.32);
  backdrop-filter: blur(8px);
}

.dest-hero h1 {
  margin: 8px auto 18px;
  max-width: 800px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  text-shadow: 0 6px 28px rgba(0,0,0,0.45);
}

.dest-hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 38px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.dest-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.dest-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.dest-stat:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.4);
}

.dest-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--gold);
  line-height: 1;
}

.dest-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
}

/* Highlights grid */
.dest-highlights-section { padding: 80px 0; }

.dest-hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.dest-hl-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid rgba(11,27,58,0.06);
  box-shadow: 0 4px 18px rgba(11,27,58,0.05);
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}

.dest-hl-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.dest-hl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(11,27,58,0.12);
  border-color: rgba(0,174,239,0.18);
}

.dest-hl-card:hover::before { opacity: 1; }

.dest-hl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18) 0%, rgba(0,174,239,0.12) 100%);
  color: var(--gold);
  margin-bottom: 18px;
}

.dest-hl-card h3 {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.dest-hl-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* Empty state */
.dest-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  background: var(--cream);
  border: 1px dashed rgba(11,27,58,0.18);
  border-radius: 16px;
  color: var(--gray);
}
.dest-empty p { margin: 0; font-size: 1rem; }

/* About section */
.dest-about-section { padding: 80px 0; }

.dest-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.dest-about-text h2 { margin-bottom: 18px; }
.dest-about-text p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.dest-about-aside {
  background: linear-gradient(135deg, rgba(0,174,239,0.06) 0%, rgba(11,27,58,0.04) 100%);
  border: 1px solid rgba(0,174,239,0.15);
  border-radius: 16px;
  padding: 26px 26px 22px;
  position: sticky;
  top: 100px;
}

.dest-about-aside h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  color: var(--navy);
}

.dest-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dest-info-list li {
  position: relative;
  padding: 10px 12px 10px 28px;
  font-size: 0.9rem;
  color: #4b5563;
  background: #fff;
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  line-height: 1.55;
}

.dest-info-list li::before {
  content: '✦';
  position: absolute;
  left: 12px;
  top: 11px;
  color: var(--gold);
  font-size: 0.7rem;
}

.dest-info-list li strong {
  color: var(--navy);
  font-weight: 700;
  margin-right: 4px;
}

/* CTA banner */
.dest-cta-banner {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue) 100%);
  color: #fff;
  overflow: hidden;
}

.dest-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(201,168,76,0.25) 0%, transparent 50%),
              radial-gradient(circle at 88% 80%, rgba(0,174,239,0.20) 0%, transparent 55%);
  pointer-events: none;
}

.dest-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  align-items: center;
  z-index: 1;
}

.dest-cta-inner .section-eyebrow {
  color: var(--gold);
  margin-bottom: 8px;
}

.dest-cta-inner h2 {
  color: #fff;
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
}

.dest-cta-inner p {
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.dest-cta-btn {
  font-size: 0.95rem;
  padding: 16px 36px;
  white-space: nowrap;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 26px rgba(201,168,76,0.32);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.dest-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201,168,76,0.42);
}

/* Responsive */
@media (max-width: 960px) {
  .dest-hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 460px; }
  .dest-hl-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .dest-about-aside { position: static; }
  .dest-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .dest-cta-btn { justify-self: center; }
}

@media (max-width: 600px) {
  .dest-hero { padding: 140px 0 70px; }
  .dest-hl-grid { grid-template-columns: 1fr; }
  .dest-hl-card { padding: 24px 22px; }
  .dest-hero-stats { grid-template-columns: repeat(2, 1fr); }
}
