/* ==========================================================================
   KARADENİZ VİP — site.css
   Koyu zemin / altın vurgu tasarım sistemi
   ========================================================================== */

:root {
  --bg: #0a0a0d;
  --bg-2: #0e0e13;
  --panel: #131318;
  --panel-2: #17171d;
  --ink: #f3eee1;
  --ink-soft: #cfc9b8;
  --ink-dim: #979182;
  --gold: #c9a24e;
  --gold-light: #e8cd83;
  --gold-deep: #8f6f2d;
  --line: rgba(201, 162, 78, 0.16);
  --line-soft: rgba(201, 162, 78, 0.09);
  --grad-gold: linear-gradient(112deg, #a67c33 0%, #e8cd83 38%, #c9a24e 62%, #9a7530 100%);
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(201, 162, 78, 0.28); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: min(1180px, 100% - clamp(2.5rem, 8vw, 5rem));
  margin-inline: auto;
}

[id] { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* --------------------------------------------------------------------------
   Tipografi
   -------------------------------------------------------------------------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.005em;
}

.display {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
}

.h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 500;
}

.h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-weight: 600; }

.gold-i {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.06em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--grad-gold);
  flex: none;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  line-height: 1.85;
  max-width: 60ch;
}

.muted { color: var(--ink-dim); }

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s, border-color 0.35s, color 0.35s;
  white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; flex: none; }

.btn-gold {
  background: var(--grad-gold);
  color: #17120a;
  box-shadow: 0 10px 32px -12px rgba(201, 162, 78, 0.55);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(201, 162, 78, 0.7);
}

.btn-ghost {
  border: 1px solid rgba(201, 162, 78, 0.45);
  color: var(--gold-light);
  background: rgba(201, 162, 78, 0.04);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 78, 0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 38px; font-size: 0.86rem; }

/* --------------------------------------------------------------------------
   Üst menü
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 96;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 13, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.brand-name em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links > a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-links > a:not(.btn):hover,
.nav-links > a.active:not(.btn) { color: var(--gold-light); }

.nav-links > a:not(.btn):hover::after,
.nav-links > a.active:not(.btn)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}

.nav-phones a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 18px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--grad-gold);
  color: #17120a;
  box-shadow: 0 8px 24px -10px rgba(201, 162, 78, 0.55);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  white-space: nowrap;
}

.nav-phones a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(201, 162, 78, 0.75);
}

.nav-phones svg { width: 13px; height: 13px; flex: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1.6px;
  background: var(--gold-light);
  transition: transform 0.35s var(--ease), opacity 0.25s, top 0.35s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }

body.menu-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobil menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(8, 8, 11, 0.97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 90px clamp(2rem, 9vw, 4rem) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

/* İçerik kısa kaldığında dikeyde ortala, uzunsa kaydırılabilir kalsın */
.mobile-menu a.mm-link:first-of-type { margin-top: auto; }
.mobile-menu .mm-contact { margin-bottom: auto; }

body.menu-open .mobile-menu { opacity: 1; visibility: visible; }

.mobile-menu a.mm-link {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 6.5vw, 2.3rem);
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}

.mobile-menu a.mm-link small {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

body.menu-open .mobile-menu a.mm-link { opacity: 1; transform: none; }
body.menu-open .mobile-menu a.mm-link:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .mobile-menu a.mm-link:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .mobile-menu a.mm-link:nth-child(3) { transition-delay: 0.2s; }
body.menu-open .mobile-menu a.mm-link:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .mobile-menu a.mm-link:nth-child(5) { transition-delay: 0.32s; }

.mobile-menu a.mm-link:hover { color: var(--gold-light); }

.mm-contact {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease) 0.4s, transform 0.5s var(--ease) 0.4s;
}

body.menu-open .mm-contact { opacity: 1; transform: none; }

.mm-contact a {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(52% 44% at 78% 30%, rgba(201, 162, 78, 0.1), transparent 68%),
    radial-gradient(40% 36% at 12% 82%, rgba(201, 162, 78, 0.05), transparent 70%),
    linear-gradient(180deg, #0a0a0d 0%, #0d0d11 55%, #0a0a0d 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(201, 162, 78, 0.14) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: radial-gradient(58% 55% at 72% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(58% 55% at 72% 40%, #000 0%, transparent 75%);
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.hero-copy .kicker { margin-bottom: 26px; }

.hero-copy h1 { margin-bottom: 24px; }

.hero-copy .lead { margin-bottom: 38px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0 36px;
  row-gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero-point svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.hero-visual { position: relative; }

.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 680px);
  margin-left: auto;
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(200deg, transparent 55%, rgba(10, 10, 13, 0.55) 100%);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 22s var(--ease) infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.06) translateY(0); }
  to { transform: scale(1.14) translateY(-2.5%); }
}

.hero-frame-border {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(201, 162, 78, 0.35);
  border-radius: 3px;
  z-index: -1;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  left: -28px;
  bottom: 42px;
  z-index: 3;
  background: rgba(12, 12, 16, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8);
}

.hero-badge svg { width: 30px; height: 30px; color: var(--gold); flex: none; }

.hero-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-badge span { font-size: 0.74rem; color: var(--ink-dim); letter-spacing: 0.08em; text-transform: uppercase; }

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollhint 2.4s var(--ease) infinite;
}

@keyframes scrollhint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --------------------------------------------------------------------------
   Şehir şeridi (ticker)
   -------------------------------------------------------------------------- */

.ticker {
  border-block: 1px solid var(--line-soft);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 46s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--gold-deep);
  flex: none;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Bölüm iskeleti
   -------------------------------------------------------------------------- */

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }

.section-head {
  max-width: 700px;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-head .kicker { margin-bottom: 20px; }
.section-head .h2 { margin-bottom: 18px; }

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .kicker::before { display: none; }

.section-head.center .kicker {
  gap: 14px;
}

.section-head.center .kicker::after,
.section-head.center .kicker::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--grad-gold);
  flex: none;
}

.section-head.center .lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Hizmet kartları
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.service-card {
  position: relative;
  background: linear-gradient(165deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3.2rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.5s, transform 0.5s var(--ease), box-shadow 0.5s;
}

.service-card:hover {
  border-color: rgba(201, 162, 78, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 34px 70px -34px rgba(0, 0, 0, 0.9);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-num::after {
  content: "";
  height: 1px;
  width: 54px;
  background: var(--line);
}

.service-card .h3 { margin-bottom: 16px; }

.service-card p { color: var(--ink-soft); margin-bottom: 26px; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-dim);
  font-size: 0.94rem;
}

.service-list svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex: none;
  margin-top: 5px;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.service-link svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.service-link:hover svg { transform: translateX(6px); }

/* --------------------------------------------------------------------------
   Türkiye haritası
   -------------------------------------------------------------------------- */

.map-section {
  background: var(--bg-2);
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
}

.map-stage {
  position: relative;
  perspective: 1200px;
}

.map-tilt {
  position: relative;
  transform: rotateX(19deg) scale(1.01);
  transform-style: preserve-3d;
  transition: transform 1.2s var(--ease);
  will-change: transform;
}

.map-stage.flat .map-tilt { transform: rotateX(0) scale(1); }

.map-canvas-wrap { position: relative; }

.map-canvas-wrap canvas,
.map-canvas-wrap svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-canvas-wrap canvas { position: relative; }

.map-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(46% 52% at 50% 48%, rgba(201, 162, 78, 0.09), transparent 72%);
  pointer-events: none;
}

.map-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-top: clamp(2.6rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-soft);
}

.stat { text-align: center; }

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 500;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* --------------------------------------------------------------------------
   Filo galerisi
   -------------------------------------------------------------------------- */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}

.fleet-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--line-soft);
  cursor: zoom-in;
  background: var(--panel);
}

.fleet-item:nth-child(1) { grid-column: span 7; aspect-ratio: 16 / 11; }
.fleet-item:nth-child(2) { grid-column: span 5; aspect-ratio: 4 / 3.14; }
.fleet-item:nth-child(3) { grid-column: span 5; aspect-ratio: 4 / 3.14; }
.fleet-item:nth-child(4) { grid-column: span 7; aspect-ratio: 16 / 11; }

.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.fleet-item:hover img { transform: scale(1.06); }

.fleet-cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 46px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 11, 0.85));
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.fleet-cap strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.fleet-cap span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 9, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.lightbox-close:hover { background: rgba(201, 162, 78, 0.12); }
.lightbox-close svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   Neden biz
   -------------------------------------------------------------------------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.why-item {
  padding: 30px 26px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: linear-gradient(170deg, rgba(201, 162, 78, 0.035), transparent 40%);
  transition: border-color 0.45s, transform 0.45s var(--ease);
}

.why-item:hover {
  border-color: rgba(201, 162, 78, 0.35);
  transform: translateY(-5px);
}

.why-item svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 20px;
}

.why-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.why-item p { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.72; }

/* --------------------------------------------------------------------------
   CTA bandı
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(55% 70% at 50% 100%, rgba(201, 162, 78, 0.1), transparent 70%),
    var(--bg-2);
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
}

.cta-band .h2 { margin: 18px auto 16px; max-width: 17ch; }

.cta-band .lead { margin: 0 auto 40px; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-phones {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
}

.cta-phones a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  transition: color 0.3s;
}

.cta-phones a:hover { color: var(--gold-light); }
.cta-phones svg { width: 18px; height: 18px; color: var(--gold); }

/* --------------------------------------------------------------------------
   Sayfa başlığı (iç sayfalar)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(4rem, 9vw, 7rem)) 0 clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(46% 60% at 82% 20%, rgba(201, 162, 78, 0.09), transparent 70%),
    var(--bg-2);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.page-hero .kicker { margin-bottom: 22px; }
.page-hero h1 { max-width: 16ch; margin-bottom: 20px; }
.page-hero .lead { max-width: 62ch; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 30px;
}

.breadcrumbs a { color: var(--ink-dim); transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span.sep { color: var(--gold-deep); }
.breadcrumbs .current { color: var(--gold); }

/* İç sayfa içerik düzenleri */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split.rev { grid-template-columns: 0.95fr 1.05fr; }

.split-img {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}

.split-img img { width: 100%; height: 100%; object-fit: cover; }

.split-copy .kicker { margin-bottom: 20px; }
.split-copy .h2 { margin-bottom: 20px; }
.split-copy p { color: var(--ink-soft); margin-bottom: 18px; }

.feature-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin: 28px 0 34px;
}

.feature-cols li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--ink-dim);
}

.feature-cols svg { width: 15px; height: 15px; color: var(--gold); flex: none; margin-top: 5px; }

/* --------------------------------------------------------------------------
   İletişim
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-card {
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  padding: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 22px;
}

.contact-card .h3 { margin-bottom: 20px; }

.contact-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}

.contact-line:last-child { border-bottom: 0; }

.contact-line svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

.contact-line a, .contact-line strong {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.contact-line a:hover { color: var(--gold-light); }

.contact-line small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 3px;
}

/* Rezervasyon adımları */
.steps-card { margin-bottom: 0; }

.steps-card > p.intro { color: var(--ink-dim); font-size: 0.95rem; margin: -8px 0 10px; }

.steps { list-style: none; margin-bottom: 30px; }

.steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.steps li:last-child { border-bottom: 0; }

.steps b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex: none;
  min-width: 44px;
  padding-top: 3px;
}

.steps strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}

.steps p { color: var(--ink-dim); font-size: 0.93rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--line-soft);
  background: #08080b;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-brand p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  max-width: 34ch;
  margin-top: 18px;
}

.footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-col a {
  color: var(--ink-dim);
  font-size: 0.93rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-dim);
  font-size: 0.93rem;
}

.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 4px; }
.footer-contact a { color: var(--ink-soft); font-weight: 600; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #8a8375;
}

/* WhatsApp yüzen buton */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #17120a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 38px -10px rgba(201, 162, 78, 0.65);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 46px -10px rgba(201, 162, 78, 0.8);
}

.wa-float svg { width: 26px; height: 26px; }

/* --------------------------------------------------------------------------
   Reveal animasyonları
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}

.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* Nav, iki telefon numarasıyla ~1200px genişlik istiyor; hamburgera erken geç */
@media (max-width: 1220px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

@media (max-height: 860px) {
  .hero-scroll { display: none; }
}

@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding-bottom: 90px; }
  .hero-frame { max-height: 56vh; aspect-ratio: 4 / 4.4; }
  .hero-badge { left: 14px; bottom: 26px; }
  .hero-frame-border { inset: 12px -12px -12px 12px; }
  .hero-scroll { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .map-stats { grid-template-columns: repeat(2, 1fr); }

  .split, .split.rev { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }

  .fleet-item:nth-child(n) { grid-column: 1 / -1; aspect-ratio: 4 / 3; }

  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero-actions .btn { flex: 1 1 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }

  .feature-cols { grid-template-columns: 1fr; }

  .brand-name { font-size: 1.05rem; }
  .brand-mark { width: 36px; height: 36px; }

  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

@media (max-width: 360px) {
  .btn { white-space: normal; padding-inline: 18px; }
}

/* Test / animasyonsuz mod (?noanim) */
html.noanim { scroll-behavior: auto; }
html.noanim .reveal { opacity: 1; transform: none; transition: none; }
html.noanim .hero-frame img { animation: none; }

/* --------------------------------------------------------------------------
   Erişilebilirlik / hareket azaltma
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero-frame img { animation: none; }
  .ticker-track { animation: none; }
}
