/* ============================================================
   İNZAR TURİZM — style.css
   Palet: Gece Mavisi (Deep Navy) + Altın (Gold) + Krem/Beyaz
   Tipografi: Playfair Display (başlık) + Montserrat (gövde)
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  --navy-900: #07182f;
  --navy-800: #0b2444;
  --navy-700: #123056;
  --navy-600: #1c3f6e;
  --gold:     #c9a24a;
  --gold-600: #b8903a;
  --gold-200: #e7d6a8;
  --gold-soft: rgba(201, 162, 74, 0.12);
  --cream:    #f7f4ee;
  --paper:    #fbfaf7;
  --ink:      #1b2430;
  --muted:    #5c6675;
  --line:     #e7e2d8;
  --white:    #ffffff;

  --ff-serif: "Playfair Display", Georgia, serif;
  --ff-sans:  "Montserrat", system-ui, sans-serif;

  --shadow-sm: 0 4px 14px rgba(7, 24, 47, 0.06);
  --shadow-md: 0 14px 40px rgba(7, 24, 47, 0.10);
  --shadow-lg: 0 30px 70px rgba(7, 24, 47, 0.18);

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Base ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}
body.nav-open {
  overflow: hidden;
  touch-action: none;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}
a { text-decoration: none; color: inherit; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5 { font-family: var(--ff-serif); font-weight: 700; line-height: 1.15; margin: 0; color: var(--navy-900); letter-spacing: -0.01em; }
.container { max-width: var(--container); width: 100%; padding-left: 22px; padding-right: 22px; margin: 0 auto; }
main, #app { overflow-x: clip; max-width: 100%; }
.text-gold { color: var(--gold) !important; }
.text-white { color: #fff !important; }
::selection { background: var(--gold); color: var(--navy-900); }

/* ---------- 3. Buttons ---------- */
.btn-gold, .btn-navy, .btn-ghost, .btn-hero-white {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 50px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .35s var(--ease); position: relative; overflow: hidden; white-space: nowrap;
}
.btn-lg-custom { padding: 17px 36px; font-size: .86rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-600) 100%);
  color: var(--navy-900); box-shadow: 0 10px 26px rgba(201,162,74,.34);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(201,162,74,.46); color: var(--navy-900); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-900); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: #fff; color: var(--navy-900); border-color: #fff; transform: translateY(-3px); }
.btn-hero-white { background: #fff; color: var(--navy-900); border-color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.btn-hero-white:hover { background: var(--gold-200); color: var(--navy-900); border-color: var(--gold-200); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.16); }

/* ---------- 4. Top Bar ---------- */
.topbar { background: var(--navy-900); color: rgba(255,255,255,.78); font-size: .78rem; padding: 9px 0; letter-spacing: .02em; }
.topbar .container { flex-wrap: nowrap; }
.topbar-left { flex-wrap: nowrap; }
.topbar span { white-space: nowrap; }
.topbar i { color: var(--gold); margin-right: 5px; }
.topbar-tag { font-weight: 500; }
.topbar-social a { width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.07); transition: all .3s var(--ease); }
.topbar-social a:hover { background: var(--gold); color: var(--navy-900); }

/* ---------- 5. Header / Nav ---------- */
.site-top {
  position: sticky; top: 0; z-index: 200;
  background: rgba(251,250,247,.98);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  transition: padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-top.scrolled { padding: 8px 0; box-shadow: var(--shadow-sm); }
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 60px; width: auto; display: block; transition: height .35s var(--ease); }
.site-top.scrolled .brand-logo { height: 48px; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-cta { display: none; }
.nav-toggle { display: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  color: var(--gold); font-size: 1.3rem; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,74,.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--ff-serif); font-weight: 800; font-size: 1.4rem; color: var(--navy-900); letter-spacing: .02em; }
.brand-sub { font-family: var(--ff-sans); font-weight: 600; font-size: .62rem; letter-spacing: .42em; color: var(--gold-600); margin-top: 3px; }

.main-nav .nav-list {
  display: flex; align-items: center; gap: 2px; flex-wrap: nowrap;
}
.main-nav .nav-list > li { flex-shrink: 0; }
.main-nav .nav-list a {
  display: block; padding: 10px 12px; font-size: .8rem; font-weight: 600; color: var(--ink);
  letter-spacing: .02em; position: relative; border-radius: 8px; white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.main-nav a:hover { color: var(--navy-900); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--navy-900); }
.nav-cta-item { display: none; }
.nav-close { display: none; }

/* Hamburger */
.nav-toggle { width: 44px; height: 44px; background: var(--navy-800); border: none; border-radius: 11px; display: grid; place-content: center; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-backdrop {
  position: fixed; inset: 0; width: 100%; height: 100%;
  background: rgba(7, 24, 47, 0); opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease), background .35s var(--ease);
  z-index: 9990; -webkit-tap-highlight-color: transparent;
}
.nav-backdrop.show { opacity: 1; visibility: visible; background: rgba(7, 24, 47, 0.62); }
body.nav-open .wa-fab, body.nav-open .to-top { opacity: 0 !important; visibility: hidden !important; pointer-events: none; }

/* ---------- 6. Placeholders (görsel yer-tutucular) ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center;
}
.ph::after {
  content: attr(data-ph);
  font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .06em;
  color: rgba(231,214,168,.7); text-transform: uppercase; text-align: center;
  padding: 10px 18px; border: 1px dashed rgba(231,214,168,.32); border-radius: 8px; max-width: 80%;
}
.ph::before {
  content: "\f03e"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 16px; left: 18px; font-size: .95rem; color: rgba(231,214,168,.35);
}
.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
/* Generic image layer that fills any placeholder zone (.ph / hero / portrait) */
.zone-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; z-index: 1; }
.ph:has(.zone-img)::after, .ph:has(.zone-img)::before { display: none; }
/* Subpage hero background image */
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ph-portrait { aspect-ratio: 4/4.4; }
.ph-card { aspect-ratio: 16/11; }

/* ---------- 7. Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.ph-hero {
  background:
    radial-gradient(circle at 70% 30%, rgba(201,162,74,.18), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 70%);
}
.ph-hero::after, .ph-hero::before { display: none; }
.kenburns { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.12) translate(-1.5%, -1.5%); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,24,47,.85) 0%, rgba(7,24,47,.55) 55%, rgba(7,24,47,.35) 100%); }
.hero-inner { position: relative; z-index: 3; padding: 80px 22px; }
.hero-content { max-width: 660px; }
@media (min-width: 992px) {
  .hero-content { max-width: 100%; }
}
.eyebrow { display: inline-block; color: var(--gold-200); font-size: .76rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,162,74,.4); }
.hero-title { color: #fff; font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 800; line-height: 1.06; margin-bottom: 22px; }
.hero-lead { color: rgba(255,255,255,.84); font-size: 1.12rem; max-width: 560px; margin-bottom: 34px; }
.hero-trust { color: rgba(255,255,255,.82); font-size: .85rem; font-weight: 500; }
.hero-trust-item { display: inline-flex; align-items: center; gap: 8px; line-height: 1.3; }
.hero-trust-logo {
  width: 1.05em; height: 1.05em; object-fit: contain; flex-shrink: 0;
  background: transparent; padding: 0; box-shadow: none;
  filter: brightness(0) saturate(100%) invert(73%) sepia(42%) saturate(620%) hue-rotate(358deg) brightness(94%) contrast(88%);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cta .btn-lg-custom { white-space: nowrap; }
@media (min-width: 992px) {
  .hero-cta { align-items: center; }
  .hero-cta .btn-lg-custom { padding: 15px 22px; font-size: .78rem; }
}
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 4; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); color: #fff; animation: bob 2.2s ease-in-out infinite; }
.hero-scroll:hover { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- 7b. Hero Visual (sağ taraf) ---------- */
.hero-visual { position: relative; }
.hero-card-ph { aspect-ratio: 3/3.6; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(201,162,74,.35); overflow: hidden; }
.hero-card-ph::after { color: rgba(231,214,168,.75); }
.hero-float-card { position: absolute; left: 16px; bottom: 16px; right: auto; z-index: 3; display: flex; align-items: center; gap: 13px; background: rgba(251,250,247,.97); backdrop-filter: blur(8px); padding: 13px 16px; border-radius: 14px; box-shadow: var(--shadow-lg); border: 1px solid rgba(201,162,74,.25); max-width: 248px; animation: floaty 4s ease-in-out infinite; }
.hfc-ic { width: 44px; height: 44px; flex: none; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); color: var(--gold); font-size: 1.15rem; }
.hero-float-card strong { display: block; font-family: var(--ff-sans); font-size: .86rem; color: var(--navy-900); }
.hero-float-card span { font-size: .74rem; color: var(--muted); }
.hero-badge-card { position: absolute; right: 16px; top: 16px; bottom: auto; z-index: 3; background: rgba(251,250,247,.97); backdrop-filter: blur(8px); padding: 11px 16px; border-radius: 14px; box-shadow: var(--shadow-lg); border: 1px solid rgba(201,162,74,.25); text-align: center; animation: floaty 4.6s ease-in-out infinite .6s; }
.hero-badge-card .stars { display: block; color: var(--gold); font-size: .76rem; letter-spacing: 2px; margin-bottom: 4px; }
.hero-badge-card strong { font-family: var(--ff-sans); font-size: .78rem; color: var(--navy-900); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- 8. Stats ---------- */
.stats-strip { background: var(--navy-900); position: relative; }
.stats-strip .stat { text-align: center; padding: 42px 18px; border-right: 1px solid rgba(255,255,255,.08); }
.stats-strip .row > [class*=col]:last-child .stat { border-right: none; }
.stat-num { font-family: var(--ff-serif); font-size: 2.7rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { color: rgba(255,255,255,.7); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 10px; }

/* ---------- 9. Sections ---------- */
.section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: linear-gradient(170deg, var(--navy-800), var(--navy-900)); }
.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-eyebrow { display: inline-block; color: var(--gold-600); font-size: .78rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; margin-bottom: 14px; }
.section-eyebrow.gold { color: var(--gold); }
.section-eyebrow::before { content: ""; display: inline-block; width: 26px; height: 1.5px; background: var(--gold); vertical-align: middle; margin-right: 12px; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 18px; }
.section-text { color: var(--muted); font-size: 1.04rem; margin-bottom: 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; color: var(--ink); font-weight: 500; }
.check-list i { color: var(--gold); margin-top: 4px; }

/* ---------- 10. Service Cards ---------- */
.service-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); cursor: pointer; transition: transform .45s var(--ease), box-shadow .45s var(--ease); height: 100%; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card .ph-card { transition: transform .6s var(--ease); }
.service-card:hover .ph-card { transform: scale(1.06); }
.service-body { padding: 28px 28px 32px; }
.service-body h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-body p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.card-link { color: var(--gold-600); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.service-card:hover .card-link i { transform: translateX(5px); }
.card-link i { transition: transform .3s var(--ease); }

/* ---------- 11. Features ---------- */
.feature { text-align: center; padding: 36px 22px; border-radius: var(--radius); transition: all .4s var(--ease); height: 100%; }
.feature:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-6px); }
.feature-ic { width: 78px; height: 78px; border-radius: 50%; display: inline-grid; place-items: center; font-size: 1.7rem; color: var(--gold); background: var(--gold-soft); border: 1px solid rgba(201,162,74,.3); margin-bottom: 20px; transition: all .4s var(--ease); }
.feature:hover .feature-ic { background: var(--gold); color: #fff; transform: rotateY(180deg); }
.feature h4 { font-size: 1.22rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- 12. Testimonials ---------- */
.quote { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 34px; margin: 0; height: 100%; transition: all .4s var(--ease); }
.quote:hover { background: rgba(255,255,255,.08); transform: translateY(-6px); border-color: rgba(201,162,74,.4); }
.quote .stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 3px; font-size: .9rem; }
.quote p { color: rgba(255,255,255,.9); font-family: var(--ff-serif); font-style: italic; font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; }
.quote footer { display: flex; flex-direction: column; }
.quote footer strong { color: #fff; font-family: var(--ff-sans); font-size: .95rem; }
.quote footer span { color: var(--gold-200); font-size: .8rem; }

/* ---------- 13. CTA band ---------- */
.cta-band { padding: 90px 0; background:
  radial-gradient(circle at 20% 20%, rgba(201,162,74,.16), transparent 50%),
  linear-gradient(150deg, var(--navy-800), var(--navy-900)); }
.cta-text { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 560px; margin: 0 auto 30px; }

/* ---------- 14. Page Hero (alt sayfalar) — temiz, minimal başlık bandı ---------- */
.page-hero { position: relative; padding: 64px 0 52px; overflow: hidden; z-index: 1; border-bottom: 1px solid rgba(201,162,74,.18); }
.page-hero-overlay { display: none; }
.page-hero .container { position: relative; z-index: 2; }
/* These classes sit directly on the .page-hero container — paint the background only, no repositioning */
/* Clean minimal navy band with a soft gold accent — no banner image */
.page-hero.ph-umre, .page-hero.ph-hac, .page-hero.ph-kultur, .page-hero.ph-galeri, .page-hero.ph-subeler, .page-hero.ph-iletisim, .page-hero.ph-rehber, .page-hero.ph-fikhi, .page-hero.ph-hakkimizda, .page-hero.ph-yasal {
  background:
    radial-gradient(circle at 88% 12%, rgba(201,162,74,.13), transparent 40%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.crumbs { position: relative; z-index: 3; color: rgba(255,255,255,.7); font-size: .82rem; letter-spacing: .04em; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.crumbs a:hover { color: var(--gold); }
.crumbs i { font-size: .6rem; opacity: .6; }
.crumbs span { color: var(--gold-200); }
.page-title { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.page-subtitle { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-top: 12px; max-width: 600px; }

/* ---------- 15. Filter Bar ---------- */
.filter-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; margin-bottom: 40px; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; background: #fff; padding: 7px; border-radius: 50px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.filter-tab { border: none; background: transparent; padding: 11px 22px; border-radius: 50px; font-family: var(--ff-sans); font-weight: 600; font-size: .8rem; letter-spacing: .04em; color: var(--muted); cursor: pointer; transition: all .3s var(--ease); }
.filter-tab:hover { color: var(--navy-900); }
.filter-tab.active { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.filter-meta { color: var(--muted); font-size: .85rem; font-weight: 500; }
.filter-meta i { color: var(--gold); }

/* ---------- 16. Tour Cards ---------- */
.tour-col { transition: opacity .4s var(--ease), transform .4s var(--ease); }
.tour-col.hide { display: none; }
.tour-card { position: relative; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); height: 100%; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tour-card-hit { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.tour-card .btn-detail { position: relative; z-index: 4; }
.tour-media { position: relative; aspect-ratio: 16/10; }
.tour-media .ph { position: absolute; inset: 0; }
.tour-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .6s var(--ease); }
.tour-card:hover .tour-img { transform: scale(1.06); }
.tour-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(7,24,47,.30), transparent 45%); pointer-events: none; }
.tour-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--gold); color: var(--navy-900); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 13px; border-radius: 50px; }
.tour-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-meta { display: flex; gap: 16px; color: var(--muted); font-size: .8rem; margin-bottom: 12px; }
.tour-meta i { color: var(--gold-600); margin-right: 5px; }
.tour-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.tour-feats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.tour-feats span { font-size: .72rem; color: var(--muted); background: var(--cream); border: 1px solid var(--line); padding: 4px 11px; border-radius: 50px; }
.tour-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); }
.tour-price { line-height: 1.1; }
.tour-price small { display: block; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.tour-price b { font-family: var(--ff-serif); font-size: 1.5rem; color: var(--navy-900); }
.tour-price b span { font-size: .8rem; color: var(--gold-600); }
.btn-detail { display: inline-flex; align-items: center; gap: 8px; background: var(--navy-800); color: #fff; border: none; padding: 11px 20px; border-radius: 50px; font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: all .3s var(--ease); }
.btn-detail:hover { background: var(--gold); color: var(--navy-900); }

/* ---------- 10b. Service Tabs (Ana Sayfa) ---------- */
.svc-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.svc-tab { display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid var(--line); background: #fff; color: var(--navy-800); padding: 15px 28px; border-radius: 50px; font-family: var(--ff-sans); font-weight: 600; font-size: .88rem; letter-spacing: .02em; cursor: pointer; transition: all .35s var(--ease); }
.svc-tab i { color: var(--gold-600); transition: color .3s var(--ease); }
.svc-tab:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.svc-tab.active { background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }
.svc-tab.active i { color: var(--gold); }
.svc-panel { display: none; }
.svc-panel.active { display: block; animation: panelIn .5s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.svc-foot { text-align: center; margin-top: 40px; }

/* ---------- 16b. Flight / Route details on cards ---------- */
.tour-desc { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.tour-route { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; margin-bottom: 16px; }
.tour-route-round { display: flex; flex-direction: column; gap: 10px; }
.route-leg { display: flex; flex-direction: column; gap: 6px; }
.route-leg-return .route-line { background: repeating-linear-gradient(270deg, var(--gold) 0 5px, transparent 5px 10px); }
.route-leg-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-600);
}
.route-cities { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-family: var(--ff-serif); font-weight: 600; font-size: 1.02rem; color: var(--navy-900); }
.route-line { flex: 1; position: relative; height: 1px; background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 10px); display: flex; align-items: center; justify-content: center; }
.route-line i { background: var(--cream); color: var(--gold-600); padding: 0 8px; font-size: .82rem; }
.route-info { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 4px; padding-top: 10px; border-top: 1px dashed rgba(201,162,74,.35); }
.flight-type.local { color: var(--navy-700); background: rgba(26, 43, 74, .06); border: 1px solid rgba(26, 43, 74, .12); }
.flight-type.local i { color: var(--gold-600); }
.tour-route-local .route-line i { color: var(--gold-600); }

.flight-type { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.flight-type i { font-size: .72rem; }
.flight-type.direct { background: #eaf7ef; color: #1c7a43; }
.flight-type.layover { background: #fdf3e6; color: #b06f12; }
.airline-logo { font-family: var(--ff-sans); font-weight: 700; font-size: .72rem; letter-spacing: .04em; color: var(--navy-800); background: #fff; border: 1px solid var(--line); padding: 4px 10px; border-radius: 7px; box-shadow: var(--shadow-sm); }

/* ---------- 16c. Tur Detay Sayfası ---------- */
.tour-detail-hero-tag {
  display: inline-block; margin-bottom: 14px;
  background: var(--gold); color: var(--navy-900);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
}
.tour-detail-media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line); margin-bottom: 20px;
}
.tour-detail-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.tour-detail-price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.tour-detail-price-card small {
  display: block; color: var(--muted); font-size: .68rem;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px;
}
.tour-detail-price-from {
  font-family: var(--ff-serif); font-size: 1.35rem; color: var(--navy-900);
  line-height: 1.35; margin-bottom: 20px;
}
.tour-detail-cta-card { position: sticky; top: 96px; }
.tour-detail-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px;
}
.tour-detail-chip {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; box-shadow: var(--shadow-sm);
}
.tour-detail-chip-ic {
  flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; color: var(--gold-600);
  font-size: .95rem;
}
.tour-detail-chip small {
  display: block; font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.tour-detail-chip strong {
  display: block; color: var(--navy-900); font-size: .88rem; font-weight: 600; line-height: 1.4;
}
.tour-detail-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tour-detail-feats span {
  font-size: .76rem; color: var(--muted);
  background: #fff; border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 50px;
}
.tour-detail-accordion { margin-top: 8px; }
.tour-detail-accordion > .accordion-item {
  background: #fff; border: 1px solid var(--line); border-radius: 12px !important;
  margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.tour-detail-accordion > .accordion-item > .accordion-header .accordion-button {
  font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 600; color: var(--navy-900);
  background: #fff; padding: 16px 20px; box-shadow: none;
  gap: 10px;
}
.tour-detail-accordion > .accordion-item > .accordion-header .accordion-button i {
  color: var(--gold-600); font-size: .9rem; width: 18px; text-align: center;
}
.tour-detail-accordion > .accordion-item > .accordion-header .accordion-button:not(.collapsed) {
  background: var(--cream); color: var(--navy-900);
}
.tour-detail-accordion > .accordion-item > .accordion-header .accordion-button::after {
  background-size: 14px; width: 14px; height: 14px;
}
.tour-detail-accordion .accordion-body { padding: 16px 20px 20px; }
.tour-detail-accordion .accordion-body > p {
  margin: 0; color: var(--muted); line-height: 1.75;
}
.tour-detail-day-count {
  margin-left: auto; font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); font-family: var(--ff-sans);
}
.tour-detail-daily { display: grid; gap: 12px; }
.tour-daily-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px;
}
.tour-daily-card-head { margin-bottom: 10px; }
.tour-daily-day {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold-600); margin-bottom: 4px;
}
.tour-daily-card h3 {
  font-size: 1.02rem; margin: 0; color: var(--navy-900); line-height: 1.35;
}
.tour-daily-list {
  margin: 0; padding-left: 1.1rem; display: grid; gap: 6px;
}
.tour-daily-list li { color: var(--muted); line-height: 1.55; font-size: .92rem; }
.tour-detail-prices {
  display: grid; gap: 12px;
}
.tour-detail-price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 18px; background: var(--cream); border: 1px solid var(--line);
  border-radius: 12px;
}
.tour-detail-price-row-main { display: flex; flex-direction: column; gap: 4px; }
.tour-detail-price-row-main b {
  font-family: var(--ff-serif); font-size: 1.6rem; color: var(--navy-900);
}
.tour-detail-price-row-main span { color: var(--muted); font-size: .9rem; }
.tour-detail-price-row > small {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  color: var(--gold-600); white-space: nowrap;
}
.tour-detail-excluded {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 10px;
}
.tour-detail-excluded li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink); font-size: .95rem;
  padding: 10px 12px; background: #fff; border: 1px solid var(--line); border-radius: 10px;
}
.tour-detail-excluded i { color: #c0392b; margin-top: 3px; flex-shrink: 0; }
.tour-detail-route { margin-bottom: 20px; }
.tour-detail-includes {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 10px;
}
.tour-detail-includes li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink); font-size: .95rem;
}
.tour-detail-includes i { color: var(--gold-600); margin-top: 3px; }
@media (max-width: 991px) {
  .tour-detail-highlights { grid-template-columns: repeat(2, 1fr); }
  .tour-detail-cta-card { position: static; }
}
@media (max-width: 575px) {
  .tour-detail-highlights { grid-template-columns: 1fr; }
  .tour-detail-price-row { flex-direction: column; align-items: flex-start; }
}
.crumbs a { color: rgba(255,255,255,.78); }
.crumbs a:hover { color: var(--gold); }

/* ---------- 17. Hac extras ---------- */
.hac-highlights { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 26px; }
.hac-highlights > div { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.hac-highlights strong { display: block; color: var(--navy-900); font-family: var(--ff-serif); font-size: 1.05rem; margin-bottom: 4px; }
.hac-highlights span { color: var(--muted); font-size: .8rem; }
.steps .step { background: #fff; border-radius: var(--radius-lg); padding: 32px 26px; height: 100%; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; transition: all .4s var(--ease); }
.steps .step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-no { font-family: var(--ff-serif); font-size: 2.4rem; font-weight: 700; color: var(--gold); opacity: .55; display: block; margin-bottom: 12px; }
.step h4 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .9rem; margin: 0; }
.package-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.ph-package { height: 100%; min-height: 380px; position: relative; }
.package-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.package-body { padding: 46px; }
.badge-gold { display: inline-block; background: var(--gold-soft); color: var(--gold-600); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 15px; border-radius: 50px; border: 1px solid rgba(201,162,74,.3); margin-bottom: 18px; }
.package-body h3 { font-size: 2rem; margin-bottom: 14px; }
.package-body > p { color: var(--muted); margin-bottom: 22px; }
.package-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.package-list li { display: flex; gap: 10px; color: var(--ink); font-size: .92rem; font-weight: 500; }
.package-list i { color: var(--gold); }
.package-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding-top: 24px; border-top: 1px solid var(--line); }
.price-block { line-height: 1.1; }
.price-from { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.price { font-family: var(--ff-serif); font-size: 2.4rem; font-weight: 700; color: var(--navy-900); }
.price-per { color: var(--muted); font-size: .8rem; }

/* ---------- 18. Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-flow: dense; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.gallery-item.hide { display: none; }
.gallery-item .ph { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.gallery-item .zone-img { transition: transform .6s var(--ease); }
.gallery-item:hover .zone-img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-inner { aspect-ratio: 1; }
.gallery-item.tall .gallery-inner { aspect-ratio: 1/2.06; }
.gallery-item.wide .gallery-inner { aspect-ratio: 2.06/1; }
.gallery-item:hover .ph { transform: scale(1.08); }
.gallery-cap { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; padding: 18px; background: linear-gradient(to top, rgba(7,24,47,.75), transparent 60%); opacity: 0; transition: opacity .4s var(--ease); }
.gallery-item:hover .gallery-cap { opacity: 1; }
.gallery-cap span { color: #fff; font-weight: 600; font-size: .9rem; }
.gallery-cap i { color: var(--gold); margin-right: 8px; }

/* ---------- 19. Branches ---------- */
.branch-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; height: 100%; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.branch-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.branch-box-head { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.branch-box-ic { width: 52px; height: 52px; flex: none; border-radius: 13px; display: grid; place-items: center; font-size: 1.25rem; color: var(--gold); background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); border: 1px solid rgba(201,162,74,.4); }
.branch-box-head h3 { font-size: 1.5rem; line-height: 1.1; }
.branch-box-head h3 span { color: var(--gold-600); font-size: 1rem; font-family: var(--ff-sans); font-weight: 600; }
.branch-box-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; }
.branch-box-list li { display: flex; gap: 14px; align-items: flex-start; }
.branch-box-list > li > i { flex: none; width: 22px; margin-top: 3px; text-align: center; color: var(--gold-600); font-size: .95rem; }
.branch-box-list li > div { min-width: 0; display: flex; flex-direction: column; }
.bb-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.bb-val { font-size: .94rem; color: var(--ink); font-weight: 500; line-height: 1.5; overflow-wrap: anywhere; word-break: break-word; }
a.bb-val { transition: color .25s var(--ease); }
a.bb-val:hover { color: var(--gold-600); }
.branch-box-btn { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; border-radius: 50px; background: var(--gold-soft); color: var(--gold-600); border: 1px solid rgba(201,162,74,.35); font-weight: 600; font-size: .82rem; letter-spacing: .04em; transition: all .35s var(--ease); }
.branch-box-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-600)); color: var(--navy-900); border-color: transparent; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,162,74,.3); }

/* legacy branch list (kept for safety) */
.branch-list { display: flex; flex-direction: column; gap: 14px; max-height: 560px; overflow-y: auto; padding-right: 8px; }
.branch-card { background: #fff; border: 1px solid var(--line); border-left: 3px solid transparent; border-radius: var(--radius); padding: 22px; cursor: pointer; transition: all .35s var(--ease); }
.branch-card:hover, .branch-card.active { border-left-color: var(--gold); box-shadow: var(--shadow-md); transform: translateX(4px); }
.branch-card h4 { font-size: 1.18rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.branch-card h4 i { color: var(--gold); font-size: .9rem; }
.branch-card p { color: var(--muted); font-size: .86rem; margin-bottom: 10px; }
.branch-contact { display: flex; gap: 16px; font-size: .82rem; font-weight: 600; color: var(--navy-700); }
.branch-contact i { color: var(--gold-600); margin-right: 5px; }
.map-wrap { position: relative; height: 100%; min-height: 540px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.ph-map { position: absolute; inset: 0; }
.map-pin { position: absolute; color: var(--gold); font-size: 1.8rem; transform: translate(-50%, -100%); filter: drop-shadow(0 4px 6px rgba(0,0,0,.4)); animation: drop .6s var(--ease) backwards; }
.map-pin:nth-child(3) { animation-delay: .1s; } .map-pin:nth-child(4) { animation-delay: .2s; } .map-pin:nth-child(5) { animation-delay: .3s; }
@keyframes drop { from { opacity: 0; transform: translate(-50%, -160%); } }

/* ---------- 20. Contact ---------- */
.contact-info { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-row { display: flex; align-items: center; gap: 16px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: all .35s var(--ease); }
.contact-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ci-ic { width: 48px; height: 48px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-600); font-size: 1.1rem; }
.contact-row strong { display: block; font-family: var(--ff-sans); font-size: .95rem; color: var(--navy-900); }
.contact-row span { color: var(--muted); font-size: .86rem; }
.contact-row.whatsapp .ci-ic { background: #25d36622; color: #1ebe57; }
.contact-social { display: flex; gap: 10px; margin-top: 22px; }
.contact-social a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--navy-800); color: #fff; transition: all .35s var(--ease); }
.contact-social a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-3px); }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.contact-form label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; letter-spacing: .02em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--ff-sans); font-size: .92rem; color: var(--ink); background: var(--paper);
  transition: all .3s var(--ease); resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px var(--gold-soft); }
.contact-form .invalid input, .contact-form input.invalid, .contact-form textarea.invalid, .contact-form .invalid textarea { border-color: #d9534f; background: #fff6f5; }
.err-msg { display: block; color: #d9534f; font-size: .76rem; font-weight: 500; margin-top: 6px; min-height: 14px; }
.kvkk { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--muted); font-weight: 400; margin: 0; cursor: pointer; }
.kvkk input { width: auto; }
.form-success { display: none; margin-top: 22px; padding: 16px 20px; background: #eaf7ef; border: 1px solid #bfe6cd; border-radius: 12px; color: #1c7a43; font-weight: 600; font-size: .9rem; }
.form-success.show { display: block; animation: fadeUp .5s var(--ease); }
.form-success i { margin-right: 8px; }
.form-error { display: none; margin-top: 22px; padding: 16px 20px; background: #fff6f5; border: 1px solid #f1c0bc; border-radius: 12px; color: #b42318; font-weight: 600; font-size: .9rem; }
.form-error.show { display: block; animation: fadeUp .5s var(--ease); }
.inzar-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }

/* ---------- 21. Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding: 70px 0 28px; }
.footer-top { padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-name { color: #fff; } .footer-brand .brand-sub { color: var(--gold); }
.footer-logo-chip { display: inline-block; background: #fff; padding: 12px 16px; border-radius: 16px; box-shadow: var(--shadow-md); }
.footer-logo-chip img { height: 72px; width: auto; display: block; }
.tursab-link { display: inline-block; margin: 4px 0 18px; border-radius: 8px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tursab-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tursab-link img { display: block; width: 248px; max-width: 100%; height: auto; border-radius: 8px; }
.footer-brand .brand-mark { background: rgba(255,255,255,.06); }
.footer-about { font-size: .9rem; margin: 18px 0; line-height: 1.7; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-3px); }
.site-footer h5 { color: #fff; font-family: var(--ff-sans); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul a { font-size: .9rem; color: rgba(255,255,255,.66); }
.site-footer ul a:hover { color: var(--gold); padding-left: 5px; }
.newsletter { display: flex; gap: 8px; margin-bottom: 20px; }
.newsletter input { flex: 1; padding: 13px 16px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); border-radius: 11px; color: #fff; font-family: var(--ff-sans); font-size: .88rem; }
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter button { width: 50px; flex: none; border: none; border-radius: 11px; background: var(--gold); color: var(--navy-900); cursor: pointer; transition: all .3s var(--ease); }
.newsletter button:hover { background: var(--gold-200); }
.footer-badges { display: flex; gap: 18px; flex-wrap: wrap; font-size: .8rem; }
.footer-badges i { color: var(--gold); margin-right: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-size: .82rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--gold); }

/* ---------- 22. FABs ---------- */
.wa-fab { position: fixed; bottom: 26px; right: 26px; z-index: 300; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease); }
.wa-fab:hover { transform: scale(1.08); color: #fff; }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }
.to-top { position: fixed; bottom: 180px; top: auto; right: 32px; left: auto; z-index: 300; width: 48px; height: 48px; border-radius: 50%; background: var(--navy-800); color: #fff; border: 1px solid rgba(255,255,255,.15); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .35s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--navy-900); }

/* ---------- 23. Page transition ---------- */
.page { animation: pageIn .55s var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- 24. Responsive ---------- */
@media (min-width: 992px) {
  .header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }
  .brand { grid-column: 1; }
  .main-nav {
    grid-column: 2;
    justify-self: center;
    position: static;
    width: auto;
    height: auto;
    transform: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    overflow: visible;
    visibility: visible;
    pointer-events: auto;
  }
  .header-actions { grid-column: 3; justify-self: end; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .nav-close { display: none !important; }
  .nav-cta-item { display: none !important; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-nav .nav-list a { padding: 10px 9px; font-size: .74rem; }
}
@media (max-width: 991px) {
  .header-cta { display: none !important; }
  .nav-toggle { display: grid; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 78vw); max-width: 100%;
    height: 100%; height: 100dvh; max-height: 100dvh;
    z-index: 10001;
    background: var(--navy-900);
    padding: 78px 28px 36px;
    transform: translate3d(100%, 0, 0);
    transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1), visibility .42s;
    display: flex; flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,.5);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    visibility: hidden; pointer-events: none;
  }
  .main-nav.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav .nav-list {
    flex: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 0;
  }
  .main-nav .nav-list li { border-bottom: 1px solid rgba(255,255,255,.12); }
  .main-nav .nav-list .nav-cta-item {
    display: block; border-bottom: none; padding-top: 22px;
  }
  .main-nav .nav-list a {
    color: #fff; font-weight: 600; padding: 18px 4px; min-height: 56px;
    display: flex; align-items: center; font-size: 1.05rem; letter-spacing: .01em;
    border: none; border-radius: 0; background: transparent;
    transition: color .25s var(--ease);
    -webkit-tap-highlight-color: transparent;
  }
  .main-nav .nav-list a.active { color: var(--gold); }
  .main-nav a::after { display: none; }
  .main-nav .nav-list a.nav-mobile-cta {
    display: flex; width: 100%; min-height: 56px; padding: 16px 24px;
    justify-content: center; align-items: center; gap: 10px;
    font-family: var(--ff-sans); font-size: 1rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; text-align: center;
    color: #000; border: none;
    background: linear-gradient(135deg, #f8e07a 0%, #f0d050 35%, #e4bc3a 65%, #c9a02a 100%);
    box-shadow: 0 6px 18px rgba(184, 144, 46, 0.38);
    -webkit-tap-highlight-color: transparent;
  }
  .main-nav .nav-list a.nav-mobile-cta i { font-size: 1.05rem; color: #000; }
  .nav-close {
    display: grid; place-items: center; position: absolute; top: 22px; right: 22px;
    width: 40px; height: 40px; background: rgba(255,255,255,.08); border: none;
    border-radius: 10px; color: #fff; font-size: 1.1rem; cursor: pointer; z-index: 2;
    transition: background .25s var(--ease);
  }
  .nav-close:active { background: rgba(255,255,255,.16); }
  .hac-highlights { grid-template-columns: 1fr; }
  .package-list { grid-template-columns: 1fr; }
  .ph-package { min-height: 280px; }
  .package-body { padding: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 68px 0; }
  .stats-strip .stat { border-right: none; padding: 30px 12px; }
  .stats-strip .row > [class*=col]:nth-child(odd) .stat { border-right: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 575px) {
  .brand-logo { height: 46px; }
  .stat-num { font-size: 2.1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item.wide { grid-column: span 2; }
  .hero { min-height: 88vh; }
  .hero-cta { width: 100%; }
  .hero-cta .btn-lg-custom { flex: 1 1 calc(50% - 6px); min-width: 0; justify-content: center; padding-left: 16px; padding-right: 16px; font-size: .8rem; }
  .hero-cta .btn-gold { flex: 1 1 100%; }
  .hero-trust { gap: 10px 16px; font-size: .8rem; }
  .hero-trust-item { flex: 1 1 calc(50% - 8px); min-width: 140px; }
  .filter-tabs { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .contact-form { padding: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-fab { width: 54px; height: 54px; font-size: 1.5rem; }
  .svc-tabs { flex-wrap: nowrap; }
  .svc-tab { flex: 1 1 0; min-width: 0; justify-content: center; padding: 12px 10px; font-size: .78rem; gap: 6px; }
}

/* AOS fallback: ensure content visible if JS/AOS fails */
.no-aos [data-aos] { opacity: 1 !important; transform: none !important; }

/* ============================================================
   25. NAVBAR DROPDOWN (Rehber) — masaüstü panel + mobil akordeon
   ============================================================ */
.nav-has-dropdown { position: relative; }
.nav-caret { font-size: .6rem; margin-left: 5px; vertical-align: middle; transition: transform .3s var(--ease); }
.nav-dropdown-toggle { cursor: pointer; }

@media (min-width: 992px) {
  /* Fare menüden alt panele inerken aradaki boşlukta hover kopmasın */
  .nav-has-dropdown::after {
    content: ""; position: absolute; left: -6px; right: -6px;
    top: 100%; height: 18px; z-index: 249;
  }
  .nav-dropdown {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 236px; background: #fff; border: 1px solid var(--line);
    border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px;
    opacity: 0; visibility: hidden; pointer-events: none; z-index: 250;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s var(--ease);
  }
  .nav-dropdown::before {
    content: ""; position: absolute; top: -6px; left: 50%;
    width: 12px; height: 12px; background: #fff;
    border-left: 1px solid var(--line); border-top: 1px solid var(--line);
    transform: translateX(-50%) rotate(45deg); border-radius: 3px 0 0 0;
  }
  .nav-has-dropdown:hover .nav-dropdown,
  .nav-has-dropdown:focus-within .nav-dropdown,
  .nav-has-dropdown.open .nav-dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-has-dropdown:hover .nav-caret,
  .nav-has-dropdown.open .nav-caret { transform: rotate(180deg); }
  .main-nav .nav-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; border-radius: 9px; font-size: .82rem;
    color: var(--ink); white-space: nowrap;
  }
  .main-nav .nav-dropdown a::after { display: none; }
  .main-nav .nav-dropdown a:hover { background: var(--gold-soft); color: var(--navy-900); }
  .main-nav .nav-dropdown a i { color: var(--gold-600); width: 18px; text-align: center; font-size: .9rem; }
}

@media (max-width: 991px) {
  .main-nav .nav-list .nav-dropdown-toggle { justify-content: space-between; }
  .main-nav .nav-dropdown {
    max-height: 0; overflow: hidden; padding: 0 0 0 6px; margin: 0;
    background: rgba(255,255,255,.04); border-radius: 10px;
    transition: max-height .35s var(--ease), margin .35s var(--ease);
  }
  .nav-has-dropdown.open .nav-dropdown { max-height: 320px; margin: 0 0 10px; }
  .nav-has-dropdown.open .nav-caret { transform: rotate(180deg); }
  .main-nav .nav-dropdown li { border-bottom: none !important; }
  .main-nav .nav-dropdown a {
    color: rgba(255,255,255,.82); font-size: .96rem;
    padding: 13px 16px; min-height: 48px;
  }
  .main-nav .nav-dropdown a i { color: var(--gold); margin-right: 6px; }
}

/* ============================================================
   26. PAGE HERO — görselli premium banner (alt sayfalar)
   ============================================================ */
.page-hero.has-bg {
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 85% 15%, rgba(201,162,74,.16), transparent 42%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.page-hero .hero-bg-img { z-index: 0; }
.page-hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(7,24,47,.84) 0%, rgba(7,24,47,.62) 55%, rgba(11,36,68,.56) 100%);
}
.page-hero.has-bg .container { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 16px; }

/* ============================================================
   27. YOLCULUK REHBERİ — Pills + Guide Cards
   ============================================================ */
.guide-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 52px; border: none; padding: 0; }
.guide-pills .nav-item { margin: 0; }
.guide-pills .nav-link {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--line); background: #fff; color: var(--navy-800);
  padding: 14px 26px; border-radius: 50px; font-family: var(--ff-sans);
  font-weight: 600; font-size: .88rem; letter-spacing: .02em; cursor: pointer;
  transition: all .35s var(--ease);
}
.guide-pills .nav-link i { color: var(--gold-600); transition: color .3s var(--ease); }
.guide-pills .nav-link:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.guide-pills .nav-link.active {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  color: #fff; border-color: transparent; box-shadow: var(--shadow-md);
}
.guide-pills .nav-link.active i { color: var(--gold); }
.guide-tab-content > .tab-pane.active { animation: panelIn .5s var(--ease); }

.guide-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; height: 100%; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.guide-card-ic {
  width: 66px; height: 66px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; color: var(--gold); background: var(--gold-soft);
  border: 1px solid rgba(201,162,74,.3); margin-bottom: 22px;
}
.guide-card h3 { font-size: 1.32rem; margin-bottom: 16px; }
.guide-list { display: flex; flex-direction: column; gap: 12px; }
.guide-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: .92rem; font-weight: 500; line-height: 1.55; }
.guide-list li i { color: var(--gold); margin-top: 5px; font-size: .78rem; flex: none; }

.guide-help { margin-top: 52px; padding: 42px 32px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.guide-help p { color: var(--muted); font-size: 1.04rem; margin: 0 auto 22px; max-width: 560px; }

/* ============================================================
   28. FIKHİ SORULAR — Sidebar + Detay Panel
   ============================================================ */
.fiqhi-section { padding-top: 72px; padding-bottom: 80px; }
.fiqhi-layout {
  display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: start;
}

/* --- Sidebar --- */
.fiqhi-sidebar {
  position: sticky; top: 96px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.fiqhi-sidebar-head {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 20px; background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  color: #fff; font-family: var(--ff-sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.fiqhi-sidebar-head i { color: var(--gold); font-size: 1rem; }
.fiqhi-nav { padding: 10px 0; }

.fiqhi-topic { border-bottom: 1px solid var(--line); }
.fiqhi-topic:last-child { border-bottom: none; }
.fiqhi-topic-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; padding: 16px 20px; border: none; background: transparent;
  font-family: var(--ff-sans); font-weight: 600; font-size: .9rem; color: var(--navy-900);
  cursor: pointer; text-align: left; transition: background .25s var(--ease);
}
.fiqhi-topic-btn:hover { background: var(--gold-soft); }
.fiqhi-topic.open .fiqhi-topic-btn { background: var(--gold-soft); color: var(--navy-900); }
.fiqhi-topic-label { display: flex; align-items: center; gap: 10px; }
.fiqhi-topic-label i,
.fiqhi-topic-label .fiqhi-icon-women { color: var(--gold-600); font-size: .95rem; width: 18px; text-align: center; flex-shrink: 0; }
.fiqhi-icon-women {
  display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
  background-color: var(--gold-600);
  mask: url('assets/img/women-icon.png') center / contain no-repeat;
  -webkit-mask: url('assets/img/women-icon.png') center / contain no-repeat;
}
.fiqhi-article-topic .fiqhi-icon-women { width: 15px; height: 15px; }
.fiqhi-topic-caret { font-size: .65rem; color: var(--muted); transition: transform .3s var(--ease); }
.fiqhi-topic.open .fiqhi-topic-caret { transform: rotate(180deg); color: var(--gold-600); }

.fiqhi-q-list {
  list-style: none; margin: 0; padding: 0 0 6px;
  max-height: 0; overflow: hidden; transition: max-height .38s var(--ease);
}
.fiqhi-topic.open .fiqhi-q-list { max-height: 600px; }
.fiqhi-q-list li { margin: 0; padding: 0; }
.fiqhi-q-btn {
  display: block; width: 100%; text-align: left;
  padding: 12px 20px 12px 40px; border: none; background: transparent;
  font-family: var(--ff-sans); font-size: .84rem; font-weight: 500; color: var(--muted);
  border-radius: 0; cursor: pointer; line-height: 1.45;
  transition: color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.fiqhi-q-btn::before {
  content: ""; position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--line);
  transition: background .25s var(--ease);
}
.fiqhi-q-btn:hover { color: var(--navy-900); background: var(--cream); }
.fiqhi-q-btn:hover::before { background: var(--gold-600); }
.fiqhi-q-btn.active {
  color: var(--navy-900); background: var(--gold-soft); font-weight: 600;
  padding: 12px 20px 12px 40px;
  box-shadow: inset 4px 0 0 var(--gold);
}
.fiqhi-q-btn.active::before { background: var(--gold); }

/* --- İçerik paneli --- */
.fiqhi-main {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); min-height: 480px; overflow: hidden;
}
.fiqhi-article { display: none; animation: panelIn .45s var(--ease); }
.fiqhi-article.active { display: block; }
.fiqhi-article-head {
  padding: 36px 40px 28px; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}
.fiqhi-article-topic {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 12px;
}
.fiqhi-article-topic i { font-size: .85rem; }
.fiqhi-article-title {
  font-family: var(--ff-serif); font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--navy-900); line-height: 1.2; margin: 0;
}
.fiqhi-article-body {
  padding: 32px 40px 40px; color: var(--ink); font-size: 1rem; line-height: 1.85;
}
.fiqhi-article-body h3 {
  font-family: var(--ff-serif); font-size: 1.22rem; color: var(--navy-900);
  margin: 28px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.fiqhi-article-body h3:first-child { margin-top: 0; }
.fiqhi-article-body p { margin: 0 0 16px; color: var(--muted); }
.fiqhi-article-body ul, .fiqhi-article-body ol {
  margin: 0 0 18px; padding-left: 0; list-style: none;
}
.fiqhi-article-body ul li, .fiqhi-article-body ol li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0; color: var(--ink); font-weight: 500; font-size: .95rem;
}
.fiqhi-article-body ul li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--gold); font-size: .72rem; margin-top: 6px; flex: none;
}
.fiqhi-article-body ol { counter-reset: fiqhi-ol; }
.fiqhi-article-body ol li { counter-increment: fiqhi-ol; }
.fiqhi-article-body ol li::before {
  content: counter(fiqhi-ol); font-family: var(--ff-serif); font-weight: 700;
  color: var(--gold-600); font-size: .9rem; min-width: 22px; flex: none;
}
.fiqhi-article-body strong { color: var(--navy-900); }
.fiqhi-article-body em { color: var(--gold-600); font-style: italic; }
.fiqhi-note {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 22px; padding: 16px 18px;
  background: var(--gold-soft); border: 1px solid rgba(201,162,74,.28);
  border-radius: var(--radius); font-size: .9rem; color: var(--muted); line-height: 1.65;
}
.fiqhi-note i { color: var(--gold-600); margin-top: 3px; flex: none; }

.fiqhi-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 40px; color: var(--muted);
}
.fiqhi-empty i { font-size: 2.4rem; color: var(--gold-600); opacity: .5; margin-bottom: 18px; }
.fiqhi-empty p { max-width: 320px; font-size: 1rem; margin: 0; }

.faq-disclaimer {
  margin-top: 32px; color: var(--muted); font-size: .88rem; line-height: 1.7;
  background: var(--gold-soft); border: 1px solid rgba(201,162,74,.25);
  border-radius: var(--radius); padding: 16px 20px;
}
.faq-disclaimer i { color: var(--gold-600); margin-right: 8px; }

@media (max-width: 991px) {
  .fiqhi-layout { grid-template-columns: 1fr; gap: 24px; }
  .fiqhi-sidebar { position: static; top: auto; }
  .fiqhi-article-head { padding: 28px 24px 22px; }
  .fiqhi-article-body { padding: 24px 24px 32px; }
}
@media (max-width: 575px) {
  .guide-pills .nav-link { padding: 12px 18px; font-size: .82rem; }
  .guide-help { padding: 30px 22px; }
  .fiqhi-topic-btn { padding: 14px 16px; font-size: .86rem; }
  .fiqhi-q-btn { padding: 11px 16px 11px 36px; font-size: .82rem; }
  .fiqhi-q-btn.active { padding: 11px 16px 11px 36px; }
  .fiqhi-q-btn::before { left: 18px; }
  .fiqhi-article-title { font-size: 1.4rem; }
}

/* ---------- Yasal metin sayfaları (KVKK, Kullanım Şartları) ---------- */
.legal-doc {
  max-width: 820px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.legal-doc-meta {
  font-size: .85rem; color: var(--muted); margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.legal-doc h2 {
  font-family: var(--ff-serif); font-size: 1.2rem; color: var(--navy-900);
  margin: 28px 0 12px;
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p {
  margin: 0 0 14px; color: var(--muted); line-height: 1.8; font-size: .95rem;
}
.legal-doc ul {
  margin: 0 0 18px; padding-left: 1.2rem;
}
.legal-doc ul li {
  color: var(--ink); line-height: 1.7; font-size: .93rem; margin-bottom: 6px;
}
.legal-doc a { color: var(--gold-600); text-decoration: underline; }
.legal-doc a:hover { color: var(--navy-900); }
.kvkk a { color: inherit; text-decoration: underline; }
.kvkk a:hover { color: var(--gold-600); }
@media (max-width: 575px) {
  .legal-doc { padding: 24px 20px; }
}
