/* =========================================================
   ZAFER ÖZDEMİR TURİZM — Landing v3
   Editorial / fleet brand — not startup-AI
   ========================================================= */

:root {
  --ink: #14161a;
  --ink-soft: #3a404c;
  --paper: #f5f4f1;
  --paper-2: #ebe8e2;
  --white: #ffffff;
  --line: rgba(20, 22, 26, 0.12);
  --signal: #e8b006;
  --signal-ink: #1a1400;
  --asphalt: #1c212b;
  --mist: #8b919c;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

.wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad);
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  color: #fff;
}

.nav.is-solid {
  background: rgba(245, 244, 241, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(10px);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity .2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  background: var(--signal);
  color: var(--signal-ink);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform .25s var(--ease);
}

.nav-cta:hover { transform: translateY(-2px); }

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.35) 0%, rgba(12, 14, 18, 0.15) 35%, rgba(12, 14, 18, 0.72) 78%, rgba(12, 14, 18, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 6.5rem var(--pad) 3.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 14ch;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.4rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn-signal {
  background: var(--signal);
  color: var(--signal-ink);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline.dark {
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ink {
  background: var(--ink);
  color: #fff;
}

.hero-lane {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  z-index: 3;
  background: repeating-linear-gradient(
    90deg,
    var(--signal) 0 42px,
    transparent 42px 78px
  );
  background-size: 120px 6px;
}

/* ---------- SECTION COMMON ---------- */
.section {
  padding: clamp(4rem, 9vh, 6.5rem) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.section .lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 38rem;
}

/* ---------- FLEET (photo first, no cards) ---------- */
.fleet {
  background: var(--white);
}

.fleet-intro {
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.fleet-item {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vh, 2.75rem) 0;
  border-top: 1px solid var(--line);
}

.fleet-item:last-child { border-bottom: 1px solid var(--line); }

.fleet-item.is-flip {
  grid-template-columns: 0.75fr 1.25fr;
}

.fleet-item.is-flip .fleet-copy { order: -1; }

.fleet-photo {
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 16 / 10;
}

.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s var(--ease);
}

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

.fleet-copy .tag {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.5rem;
}

.fleet-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.fleet-copy p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.fleet-meta span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--signal);
  margin-right: 0.45rem;
  vertical-align: 1px;
}

/* ---------- ROUTES ---------- */
.routes {
  background: var(--asphalt);
  color: #f2f1ed;
}

.routes .section-label { color: var(--signal); }
.routes .lede { color: rgba(242, 241, 237, 0.7); }

.route-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.route-list li {
  background: var(--asphalt);
  padding: 1.4rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background .3s var(--ease);
}

.route-list li:hover {
  background: #262c38;
}

.route-list li small {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(242, 241, 237, 0.5);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.about-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.about-stats span {
  font-size: 0.85rem;
  color: var(--mist);
}

/* ---------- APPLY ---------- */
.apply {
  background: var(--paper-2);
}

.apply-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.apply-side h2 { max-width: 12ch; }

.apply-side .contact {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.apply-side .contact a,
.apply-side .contact p {
  font-size: 1.05rem;
  font-weight: 500;
}

.apply-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
}

.apply-form .full { grid-column: 1 / -1; }

.field { display: grid; gap: 0.35rem; }

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1.5px solid var(--line);
  background: var(--paper);
  outline: none;
  transition: border-color .2s, background .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: var(--white);
}

.field textarea { min-height: 110px; resize: vertical; }

.form-msg {
  min-height: 1.2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-msg.ok { color: #1f7a4d; }
.form-msg.err { color: #b42318; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(245, 244, 241, 0.7);
  padding: 2.5rem 0 1.5rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a:hover { color: var(--signal); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
}

/* ---------- MOTION BASE ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .fleet-item,
  .fleet-item.is-flip {
    grid-template-columns: 1fr;
  }
  .fleet-item.is-flip .fleet-copy { order: 0; }
  .about-grid,
  .apply-layout {
    grid-template-columns: 1fr;
  }
  .about-visual {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 780px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 300px);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    background: var(--paper);
    color: var(--ink);
    transform: translateX(105%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 90;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; padding: 0.85rem 0; }
  .nav-burger { display: grid; }
  .nav-cta { display: none; }
}

@media (max-width: 560px) {
  .apply-form { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-content { padding-bottom: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
