/* ==========================================================================
   NOVA MOBİL TIR — Kurumsal Şablon
   Tasarım çizgisi: novatrailer.com (Jost / DM Sans, bronz aksan, koyu endüstriyel)
   ========================================================================== */

/* --------------------------------------------------------- Yazı tipleri
   Google Fonts yerine kendi sunucumuzdan servis edilir: dış alan adına
   bağlantı kurulmaz, iki DNS + TLS gidiş dönüşü ortadan kalkar.
   Değişken (variable) sürümler kullanıldığı için 400–700 arası tüm
   ağırlıklar tek dosyadan gelir.
   Türkçe karakterler (ğ, ş, İ, Ğ, Ş) latin-ext aralığındadır; ı, ç, ö, ü
   latin aralığında yer alır — bu yüzden iki alt küme de yüklenir.
   -------------------------------------------------------------------- */

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dmsans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dmsans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/jost-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/jost-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Renkler */
  --accent: #b07e50;
  --accent-rgb: 176, 126, 80;
  --accent-dark: #96683d;
  --accent-light: #cfa274;

  --dark: #0e0e0e;
  --dark-2: #151515;
  --dark-3: #1e1e1e;
  --light: #ffffff;
  --light-2: #f6f5f3;
  --light-3: #ebe8e4;

  --text: rgba(0, 0, 0, 0.62);
  --text-dark-bg: rgba(255, 255, 255, 0.62);
  --heading: #0a0a0a;
  --border: rgba(0, 0, 0, 0.1);
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Tipografi */
  --font-body: "DM Sans", Helvetica, Arial, sans-serif;
  --font-head: "Jost", Helvetica, Arial, sans-serif;

  /* Ölçüler */
  --container: 1280px;
  --header-h: 84px;
  --radius: 0px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --------------------------------------------------------- Reset / temel */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--heading);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(34px, 5.4vw, 60px); }
h2 { font-size: clamp(28px, 3.8vw, 46px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
h4 { font-size: 20px; }
h5 { font-size: 17px; }

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* --------------------------------------------------------- Yardımcılar */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide { max-width: 1600px; }

.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

.section-dark {
  background: var(--dark);
  color: var(--text-dark-bg);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 { color: #fff; }

.section-light { background: var(--light-2); }

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.subtitle::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}
.text-center .subtitle::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.lead { font-size: 18px; line-height: 1.75; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.text-center { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------- Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background: var(--accent);
  color: #fff;
  line-height: 1;
}
.btn:hover { background: var(--accent-dark); color: #fff; }

.btn-outline {
  background: transparent;
  border-color: var(--heading);
  color: var(--heading);
}
.btn-outline:hover { background: var(--heading); color: #fff; }

.btn-light {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-light:hover { background: #fff; color: var(--dark); }

.btn-sm { padding: 11px 24px; font-size: 12px; }

.link-arrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover::after { transform: translateX(5px); }

/* --------------------------------------------------------- Üst bar */
.topbar {
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  border-bottom: 1px solid var(--border-dark);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 42px;
}
.topbar-info,
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

/* Simge + metin ikilisi; simge metinle aynı yükseklikte hizalanır */
.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.tb-item svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--accent);
}

.topbar-info a,
.topbar-contact a { color: rgba(255, 255, 255, 0.7); }
.topbar-info a:hover,
.topbar-contact a:hover { color: var(--accent-light); }

.topbar-social {
  display: inline-flex;
  gap: 16px;
  padding-left: 26px;
  border-left: 1px solid var(--border-dark);
}
.topbar-social a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  width: 22px;
  text-align: center;
}
.topbar-social a:hover { color: var(--accent-light); }

/* --------------------------------------------------------- Header */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s var(--ease);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.logo img { height: 46px; width: auto; }
.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.logo-text span { color: var(--accent); }
.logo-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 12px 16px;
  position: relative;
}
.nav > li > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav > li > a:hover,
.nav > li.active > a { color: #fff; }
.nav > li > a:hover::after,
.nav > li.active > a::after { transform: scaleX(1); }

.has-sub > a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-right: 8px;
  opacity: 0.6;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-top: 2px solid var(--accent);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.28s var(--ease);
}
.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  border-left: 2px solid transparent;
}
.submenu a:hover {
  color: #fff;
  background: rgba(var(--accent-rgb), 0.12);
  border-left-color: var(--accent);
}

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.header-phone .ico {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-dark);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 16px;
}
.header-phone .txt small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.header-phone .txt strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-dark);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all 0.3s var(--ease);
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.3s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: var(--dark) center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 90px 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.78) 42%,
    rgba(0, 0, 0, 0.35) 100%
  );
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 780px; }
.hero h1 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dark);
}
.hero-stats div {
  padding: 26px 24px 0;
  border-right: 1px solid var(--border-dark);
}
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.hero-stats span {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------- Sayfa başlığı */
.page-hero {
  position: relative;
  padding: 120px 0 90px;
  background: var(--dark) center/cover no-repeat;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.page-hero p { color: rgba(255, 255, 255, 0.62); max-width: 620px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 26px;
  font-family: var(--font-head);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.65); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb li + li::before { content: "/ "; opacity: 0.5; }

/* --------------------------------------------------------- Görsel yer tutucu */
.ph {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, #22201e 0%, #131211 100%);
  overflow: hidden;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 12px);
}
.ph .ph-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  z-index: 2;
  color: rgba(var(--accent-rgb), 0.85);
  text-align: center;
  padding: 20px;
}
.ph .ph-mark svg { width: 74px; height: auto; opacity: 0.9; }
.ph .ph-mark span {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-4x3 { aspect-ratio: 4 / 3; }
.ph-1x1 { aspect-ratio: 1 / 1; }
.ph-3x4 { aspect-ratio: 3 / 4; }

/* --------------------------------------------------------- Araç kartları */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card-vehicle {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--dark-2);
  color: inherit;
}
.card-vehicle .ph { aspect-ratio: 4 / 3; transition: transform 0.6s var(--ease); }
.card-vehicle:hover .ph { transform: scale(1.06); }
.card-vehicle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
  z-index: 3;
  transition: opacity 0.4s var(--ease);
}
.card-vehicle:hover::after { background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(var(--accent-rgb), 0.35) 100%); }

.card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 28px;
}
.card-body .tag {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
  margin-bottom: 8px;
}
.card-body h3 {
  color: #fff;
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.card-body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0 0 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.card-vehicle:hover .card-body p { max-height: 90px; opacity: 1; }
.card-body .link-arrow { font-size: 12px; color: #fff; }

/* --------------------------------------------------------- Hizmet kutuları */
.card-service {
  background: #fff;
  border: 1px solid var(--border);
  padding: 42px 34px;
  transition: all 0.35s var(--ease);
  height: 100%;
}
.card-service:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card-service .ico {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  margin-bottom: 26px;
  transition: all 0.35s var(--ease);
}
.card-service:hover .ico { background: var(--accent); color: #fff; }
.card-service .ico svg { width: 30px; height: 30px; }
.card-service h3 { font-size: 21px; text-transform: uppercase; font-weight: 600; }
.card-service p { font-size: 15px; margin-bottom: 20px; }

.section-dark .card-service {
  background: var(--dark-2);
  border-color: var(--border-dark);
}
.section-dark .card-service:hover { border-color: var(--accent); }
.section-dark .card-service p { color: var(--text-dark-bg); }

/* --------------------------------------------------------- Numaralı adımlar */
.step {
  position: relative;
  padding: 34px 30px;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  height: 100%;
}
.step .num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: rgba(var(--accent-rgb), 0.35);
  margin-bottom: 16px;
  display: block;
}
.step h4,
.step h3 { color: #fff; text-transform: uppercase; font-size: 17px; letter-spacing: 0.03em; margin-bottom: 12px; }
.step p { font-size: 15px; margin: 0; }

/* --------------------------------------------------------- İki sütun blok */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* İçerik + yan sütun düzeni (araç detay, iletişim) */
.split-aside {
  grid-template-columns: 1.6fr 1fr;
  align-items: start;
}
.split-form {
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
}

.split-media { position: relative; }
.split-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--accent);
  color: #fff;
  padding: 26px 30px;
  max-width: 240px;
}
.split-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}
.split-badge span {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 15px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------- Sayaçlar */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
}
.counters > div {
  background: var(--dark);
  padding: 44px 26px;
  text-align: center;
}
.counters strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.counters span {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------- Misyon / vizyon */
.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
}
.mv > div { background: var(--dark-2); padding: 54px 46px; }
.mv h3 { text-transform: uppercase; font-weight: 600; }

/* --------------------------------------------------------- CTA şeridi */
.cta-strip {
  background: var(--accent);
  color: #fff;
  padding: 62px 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; margin-bottom: 8px; text-transform: uppercase; font-weight: 600; }
.cta-strip p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-strip .btn {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.cta-strip .btn:hover { background: var(--dark); border-color: var(--dark); color: #fff; }

/* --------------------------------------------------------- Referans logoları */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.logos div,
.logos a {
  background: #fff;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
  transition: all 0.3s var(--ease);
}
.logos div:hover,
.logos a:hover { color: var(--accent); background: var(--light-2); }

/* --------------------------------------------------------- Araç detay */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th,
.spec-table td {
  padding: 15px 18px;
  border: 1px solid var(--border);
  font-size: 15px;
  text-align: left;
}
.spec-table th {
  width: 42%;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--heading);
  background: var(--light-2);
}

/* Karşılaştırma tablosunda ilk sütun etiket değil satır başlığıdır;
   sabit genişlik yerine içeriğe göre yayılır. */
.spec-table--compare th { width: auto; }
.spec-table--compare thead th { background: var(--dark); color: #fff; }
.spec-table--compare tbody th a { color: var(--heading); }
.spec-table--compare tbody th a:hover { color: var(--accent); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery .ph { aspect-ratio: 4 / 3; }

/* --------------------------------------------------------- İnteraktif Galeri & Lightbox */
.vehicle-main-media {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}
.gallery-main-item {
  display: block;
  position: relative;
  text-decoration: none;
  cursor: zoom-in;
}
.gallery-main-item .media img {
  transition: transform 0.6s var(--ease);
}
.gallery-main-item:hover .media img {
  transform: scale(1.03);
}

.gallery-zoom-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s var(--ease);
  z-index: 5;
  pointer-events: none;
}
.gallery-zoom-badge svg {
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.gallery-main-item:hover .gallery-zoom-badge {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.gallery-main-item:hover .gallery-zoom-badge svg {
  color: #fff;
  transform: scale(1.15);
}

.gallery-interactive .gallery-thumb-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--dark-2);
  cursor: zoom-in;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.gallery-interactive .gallery-thumb-item:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}
.gallery-interactive .gallery-thumb-item .media img {
  transition: transform 0.5s var(--ease);
}
.gallery-interactive .gallery-thumb-item:hover .media img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.7) 0%, rgba(14, 14, 14, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  color: #fff;
  z-index: 3;
}
.gallery-item-overlay svg {
  color: var(--accent-light);
  transform: scale(0.8);
  transition: transform 0.35s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.gallery-interactive .gallery-thumb-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-interactive .gallery-thumb-item:hover .gallery-item-overlay svg {
  transform: scale(1);
}

/* --------------------------------------------------------- Lightbox Modal */
.lb-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
  user-select: none;
}
.lb-modal.lb-open {
  opacity: 1;
  visibility: visible;
}

.lb-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  color: #fff;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lb-counter {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.lb-header-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  max-width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lb-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lb-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  padding: 0;
}
.lb-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s var(--ease);
}
.lb-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.lb-btn:hover svg {
  transform: scale(1.1);
}
.lb-btn.lb-btn-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.lb-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 12;
}

.lb-stage {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 80px;
}
.lb-figure {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 88vw;
  max-height: 70vh;
}
.lb-img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
.lb-img.lb-in {
  transform: scale(1);
  opacity: 1;
}
.lb-img.lb-zooming {
  animation: lbZoomGrow 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lbZoomGrow {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 54px;
  height: 54px;
  background: rgba(14, 14, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  padding: 0;
}
.lb-nav svg {
  width: 26px;
  height: 26px;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.lb-footer {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 24px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
  background: rgba(14, 14, 14, 0.8);
}
.lb-caption {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 800px;
  min-height: 20px;
  font-family: var(--font-body);
}
.lb-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow-x: auto;
  padding: 6px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.lb-thumb {
  width: 68px;
  height: 50px;
  flex: 0 0 68px;
  border: 2px solid transparent;
  opacity: 0.45;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.25s var(--ease);
  background: var(--dark-2);
  padding: 0;
}
.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lb-thumb:hover {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.4);
}
.lb-thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
  transform: scale(1.06);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.6);
}

@media (max-width: 768px) {
  .lb-header { padding: 12px 16px; }
  .lb-header-title { display: none; }
  .lb-stage { padding: 10px; }
  .lb-img-wrap { max-width: 95vw; max-height: 65vh; }
  .lb-img { max-height: 65vh; }
  .lb-nav {
    width: 44px;
    height: 44px;
  }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-thumb { width: 54px; height: 40px; flex: 0 0 54px; }
  .lb-footer { padding: 8px 12px 14px; }
}

.sticky-box {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--dark);
  color: var(--text-dark-bg);
  padding: 38px 34px;
  border-top: 3px solid var(--accent);
}
.sticky-box h4 { color: #fff; text-transform: uppercase; font-size: 18px; }
.sticky-box .btn { width: 100%; margin-top: 8px; }

/* --------------------------------------------------------- Akordiyon */
.acc-item { border-bottom: 1px solid var(--border); }
.acc-head {
  width: 100%;
  background: none;
  border: 0;
  padding: 22px 44px 22px 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--heading);
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease);
}
.acc-head:hover { color: var(--accent); }
.acc-head::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.acc-item.open .acc-head::after { content: "−"; }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.acc-body p { padding: 0 40px 24px 0; font-size: 15px; }

/* --------------------------------------------------------- Formlar */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--heading);
  outline: none;
  transition: border-color 0.3s var(--ease);
  width: 100%;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-note { font-size: 13px; color: rgba(0, 0, 0, 0.45); }
.form-hint {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: -2px;
}

/* Uluslararası Telefon Girişi */
.phone-input-wrap {
  display: flex;
  position: relative;
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color 0.3s var(--ease);
}
.phone-input-wrap:focus-within {
  border-color: var(--accent);
}
.phone-input-wrap.has-error {
  border-color: #c0392b !important;
  background: rgba(192, 57, 43, 0.03);
}
.phone-country-select-wrap {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  background: var(--light-2);
}
.phone-country-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0 !important;
  padding: 14px 26px 14px 14px !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  outline: none;
  z-index: 2;
  width: auto !important;
}
.phone-select-arrow {
  position: absolute;
  right: 9px;
  pointer-events: none;
  font-size: 10px;
  color: var(--text);
  z-index: 1;
  opacity: 0.6;
}
.phone-input-wrap input[type="tel"] {
  flex: 1;
  border: 0 !important;
  outline: none !important;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--heading);
  background: transparent !important;
  width: 100%;
}
.phone-input-wrap input[type="tel"]:focus {
  border-color: transparent !important;
}

/* --------------------------------------------------------- İletişim kutuları */
.contact-box {
  display: flex;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  background: #fff;
  height: 100%;
}
.contact-box .ico {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
}
.contact-box .ico svg { width: 22px; height: 22px; }
.contact-box h5,
.contact-box .contact-title {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-size: 14px;
}
.contact-box p { font-size: 15px; margin: 0; }

.map-embed {
  width: 100%;
  height: 440px;
  border: 0;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.4s var(--ease);
}
.map-embed:hover { filter: none; }

/* --------------------------------------------------------- Footer */
.footer {
  background: var(--dark);
  color: var(--text-dark-bg);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 60px;
}
.footer h5,
.footer .footer-heading {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer h5::after,
.footer .footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.footer .logo { margin-bottom: 22px; display: inline-block; }
.footer p { font-size: 15px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--text-dark-bg); font-size: 15px; }
.footer-links a:hover { color: var(--accent-light); padding-left: 5px; }
.footer-links a { transition: all 0.3s var(--ease); }

.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
}
.footer-contact .ico { color: var(--accent); flex: 0 0 20px; }
.footer-contact .ico svg { width: 18px; height: 18px; }
.footer-contact strong { display: block; color: #fff; font-weight: 500; }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-bottom a { color: var(--text-dark-bg); }
.footer-bottom a:hover { color: var(--accent-light); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-dark);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }

/* --------------------------------------------------------- Yukarı çık */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: 0;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--dark); }

/* --------------------------------------------------------- Giriş animasyonu
   Yalnızca JS etkinken gizlenir; betik çalışmazsa içerik görünür kalır. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------- Duyarlı */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logos { grid-template-columns: repeat(3, 1fr); }

  /* Dar masaüstünde üst bar sıkışmasın: çalışma saati gizlenir,
     bilgi alt bilgide ve iletişim sayfasında zaten yer alıyor. */
  .tb-hours { display: none; }
}

@media (max-width: 991px) {
  .topbar { display: none; }
  .header-cta .header-phone { display: none; }
  .burger { display: grid; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease);
    border-top: 1px solid var(--border-dark);
  }
  .nav.open { transform: none; }
  .nav > li > a { padding: 15px 0; border-bottom: 1px solid var(--border-dark); }
  .nav > li > a::after { display: none; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-left: 2px solid var(--accent);
    margin: 6px 0 10px 12px;
    padding: 4px 0;
    display: none;
  }
  .has-sub.open .submenu { display: block; }

  .split,
  .split-aside,
  .split-form { grid-template-columns: 1fr; gap: 40px; }
  .sticky-box { position: static; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .mv { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .hero-stats div:nth-child(2) { border-right: 0; }
  .hero-stats div:nth-child(3),
  .hero-stats div:nth-child(4) { border-top: 1px solid var(--border-dark); margin-top: 24px; }
  .section { padding: 70px 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .mv > div { padding: 38px 26px; }
  .split-badge { position: static; max-width: none; margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-strip .container { flex-direction: column; align-items: flex-start; }
  .gallery { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 70px 0; }
}

/* ==========================================================================
   PHP SÜRÜMÜ EKLERİ
   Erişilebilirlik, form durumları, gerçek görseller ve yazdırma.
   ========================================================================== */

/* --------------------------------------------------------- Erişilebilirlik */

/* Klavyeyle gezinenler için içeriğe atlama bağlantısı */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid #fff;
  outline-offset: -3px;
}

/* Görsel olarak gizli ama ekran okuyucuya açık metin */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Odak halkası — tarayıcı varsayılanı bazı öğelerde kayboluyordu */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Hareket azaltma tercihine saygı */
@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 !important; transform: none !important; }
}

/* --------------------------------------------------------- Gerçek görseller
   Yer tutucu (.ph) blokları fotoğrafla değiştirildiğinde aynı oranı korur;
   width/height öznitelikleriyle birlikte düzen kaymasını (CLS) önler. */

.media {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--light-3);
}
.media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-16x9 { aspect-ratio: 16 / 9; }
.media-4x3  { aspect-ratio: 4 / 3; }
.media-3x4  { aspect-ratio: 3 / 4; }

.card-vehicle .media { aspect-ratio: 4 / 3; }
.card-vehicle .media img { transition: transform 0.6s var(--ease); }
.card-vehicle:hover .media img { transform: scale(1.06); }

.logos img {
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.3s var(--ease);
}
.logos a:hover img { filter: grayscale(0); opacity: 1; }

/* --------------------------------------------------------- Form durumları */

.form-field input.has-error,
.form-field select.has-error,
.form-field textarea.has-error {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.04);
}

.field-error {
  display: block;
  margin-top: 7px;
  color: #c0392b;
  font-size: 13.5px;
  font-family: var(--font-body);
  line-height: 1.5;
}

.alert {
  padding: 18px 22px;
  margin-bottom: 28px;
  border-left: 3px solid var(--accent);
  background: var(--light-2);
  font-size: 15px;
  line-height: 1.65;
}
.alert strong { color: var(--heading); display: block; margin-bottom: 4px; }
.alert-success { border-left-color: #2e7d4f; background: rgba(46, 125, 79, 0.07); }
.alert-error   { border-left-color: #c0392b; background: rgba(192, 57, 43, 0.07); }

/* Bal küpü — kullanıcıya görünmez, botların doldurduğu alan */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------- 404 sayfası */

.error-page {
  padding: 120px 0 130px;
  text-align: center;
}
.error-page .code {
  font-family: var(--font-head);
  font-size: clamp(90px, 18vw, 190px);
  font-weight: 600;
  line-height: 0.9;
  color: var(--light-3);
  letter-spacing: -0.03em;
}
.error-page h1 { margin: 10px 0 18px; }
.error-page p { max-width: 560px; margin: 0 auto 34px; }
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* --------------------------------------------------------- Kırıntı yolu */

.breadcrumb { list-style: none; }

/* --------------------------------------------------------- Harita */

.map-embed {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

/* --------------------------------------------------------- Yazdırma */

@media print {
  .topbar,
  .header,
  .footer,
  .to-top,
  .cta-strip,
  .skip-link,
  .map-embed,
  form { display: none !important; }

  body { color: #000; background: #fff; font-size: 12pt; }
  .section, .section-sm { padding: 18px 0; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
