/* ==========================================================================
   TR Nakliye — Tema stilleri
   Görsel dil: Logtra referansı (kırmızı + lacivert, eğik kesimler)
   Mobil öncelikli. Kırılımlar: 640 / 768 / 960 / 1100 px
   ========================================================================== */

/* ---------- Font (Manrope, SIL Open Font License) ---------- */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-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: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-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;
}

:root {
  --red: #ea1e00;
  --red-600: #c41900;
  --red-light: #ff6a4d;      /* koyu zeminde okunur kırmızı */
  --blue: #000671;
  --blue-2: #1a207f;
  --navy: #01054c;
  --dark: #080821;
  --black: #000;

  --heading: #232323;
  --body: #5e6170;
  --muted-dark: #b9bcd6;     /* koyu zeminde gövde metni */
  --line: #e4e6ee;
  --bg: #fff;
  --bg-soft: #f7f7f7;
  --bg-blue: #eef3f9;

  --success: #17804a;

  --radius: 5px;
  --shadow: 0 2px 35px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 0 10px rgba(0, 0, 0, 0.09);

  --container: 1200px;
  --topbar-h: 48px;
  --nav-h: 76px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Temel ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  padding-bottom: 64px; /* mobil alt çubuk */
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--red);
}

a:hover {
  color: var(--red-600);
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
}

h1 {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 1.1rem + 1.9vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}

.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;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -80px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
  color: #fff;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.9rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

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

.btn--red:hover {
  background: var(--blue);
  color: #fff;
}

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

.btn--blue:hover {
  background: var(--red);
  color: #fff;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn--ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}

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

.btn--wa:hover {
  background: #11653a;
  color: #fff;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  min-height: 44px;
  padding: 0.6rem 1.3rem;
  font-size: 0.95rem;
}

.round-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  transition: background-color 0.3s;
}

/* ---------- Bölüm üst başlığı (Logtra "hero-sub-title") ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

/* Üç kademeli çizgi */
.eyebrow::before {
  content: "";
  width: 34px;
  height: 11px;
  flex: none;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 75% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
}

.eyebrow--light {
  color: var(--red-light);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  background: var(--navy);
  box-shadow: 0 6px 24px rgba(1, 5, 76, 0.25);
}

/* Kırmızı eğik logo bloğu */
.header-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex: none;
  padding: 0 44px 0 16px;
  background: #fff; /* renkli logo (lacivert + kırmızı) beyaz zeminde */
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}

.brand-logo {
  width: auto;
  height: 38px;
}

.footer-brand .brand-logo {
  height: 50px;
}

/* Logo bloğunun yanındaki lacivert ince şerit */
.header-logo-wrap {
  position: relative;
  display: flex;
  flex: none;
}

.header-logo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -14px;
  width: 44px;
  background: var(--blue-2);
  clip-path: polygon(30px 0, 44px 0, 14px 100%, 0 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.brand:hover {
  color: #fff;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.header-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

/* Üst bilgi çubuğu */
.topbar {
  display: none;
  position: relative;
  background: var(--blue);
  color: #fff;
  font-size: 0.9rem;
}

/* Sağ üstteki kırmızı eğik köşe */
.topbar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 210px;
  background: var(--red);
  clip-path: polygon(34px 0, 100% 0, 100% 100%, 0 100%);
}

.topbar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--topbar-h);
  padding: 0 24px 0 48px;
}

.topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.topbar-ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
}

.topbar-ico .icon {
  width: 15px;
  height: 15px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar-right {
  font-weight: 700;
}

/* Menü satırı */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-height: 68px;
  padding: 0 16px 0 20px;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 24px;
  height: 24px;
}

.nav-toggle .icon-close,
.nav-open .nav-toggle .icon-menu {
  display: none;
}

.nav-open .nav-toggle .icon-close {
  display: block;
}

/* Mobil menü paneli */
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.nav-open .site-nav {
  display: block;
}

.nav-list,
.submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  padding: 0.5rem 0 1rem;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  padding: 0.85rem 16px;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--heading);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--red);
}

.submenu-toggle .icon {
  width: 1em;
  height: 1em;
  transition: transform 0.2s;
}

.has-sub.is-open > .submenu-toggle .icon {
  transform: rotate(180deg);
}

.submenu {
  display: none;
  padding: 0 0 0.5rem 16px;
}

.has-sub.is-open > .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 0.6rem 16px;
  border-left: 2px solid var(--line);
  color: var(--body);
  font-weight: 600;
  text-decoration: none;
}

.submenu a:hover,
.submenu a[aria-current="page"] {
  border-left-color: var(--red);
  color: var(--red);
}

/* Alt menüdeki aktif sayfa, üst menü başlığını da vurgular */
.has-sub:has([aria-current="page"]) > .nav-link {
  color: var(--red);
}

.nav-cta-item {
  padding: 0.75rem 16px 0;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 72px 0 96px;
  overflow: hidden;
  background: var(--navy);
  color: #d9dcf0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fotoğrafın üzerine Logtra'daki gibi mavi ton */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 5, 76, 0.55) 0%, rgba(1, 5, 76, 0) 70%),
    rgba(10, 14, 120, 0.72);
}

.hero .eyebrow {
  color: #ff4a2b;
}

/* Soldaki kırmızı kıvrımlı çizgi (dekoratif) */
.hero-curve {
  position: absolute;
  left: 2%;
  top: 8%;
  z-index: 1;
  width: 150px;
  height: 92%;
  display: none;
}

/* Kesikli rota çizgisi (dekoratif) */
.hero-route {
  position: absolute;
  right: 6%;
  top: 14%;
  z-index: 1;
  width: 440px;
  max-width: 34vw;
  height: auto;
  display: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  color: #fff;
}

.hero-lead {
  max-width: 44ch;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: #fff;
}

.hero-points .icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--red);
  stroke-width: 3;
}

/* ==========================================================================
   HIZLI TEKLİF (Logtra "requ-area")
   ========================================================================== */

.quote {
  display: grid;
}

.quote-media {
  position: relative;
  min-height: 260px;
  background: var(--blue-2);
}

.quote-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Görsel üzerindeki kırmızı iletişim kutusu */
.quote-call {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 22px 24px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
}

.quote-call p {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.quote-call a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  word-break: break-word;
}

.quote-call a:hover {
  text-decoration: underline;
}

.quote-call small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.quote-panel {
  padding: 48px 16px 56px;
  background: var(--blue-2);
  color: var(--muted-dark);
}

.quote-inner {
  max-width: 760px;
}

.quote-panel h2 {
  color: #fff;
}

.quote-intro {
  margin-bottom: 1.5rem;
}

.quote-panel a:not(.btn) {
  color: #fff;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.tab {
  flex: 1;
  min-height: 52px;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.tab:hover {
  border-color: #fff;
}

.tab[aria-selected="true"] {
  background: var(--red);
  border-color: var(--red);
}

.no-js .tabs {
  display: none;
}

.js .tab-panel:not(.is-active) {
  display: none;
}

.no-js .tab-panel + .tab-panel {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.panel-title {
  color: #fff;
}

.js .panel-title {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- WhatsApp teklif formu ---------- */

.choice-group {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 8px;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.choice span:hover {
  border-color: #fff;
}

.choice input:checked + span {
  background: var(--red);
  border-color: var(--red);
}

.choice input:focus-visible + span {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.opt {
  font-weight: 500;
  color: var(--muted-dark);
}

.btn--lg {
  min-height: 58px;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

.wa-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 24px;
}

.wa-call {
  font-size: 0.95rem;
  text-decoration: none;
}

.wa-call strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ---------- Form ---------- */

.form-grid {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.req {
  color: var(--red-light);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blue);
  font: inherit;
  font-size: 0.95rem;
  color: #fff;
  color-scheme: dark;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9da1c9;
}

.field select option {
  background: var(--blue);
  color: #fff;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(234, 30, 0, 0.3);
}

.field input:user-invalid,
.field select:user-invalid {
  border-color: var(--red-light);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500 !important;
  color: var(--muted-dark) !important;
}

.check input {
  width: 20px;
  height: 20px;
  min-height: 0 !important;
  margin: 2px 0 0;
  flex: none;
  accent-color: var(--red);
}

.check a {
  color: #fff;
}

.form-actions {
  margin-top: 22px;
}

.form-status {
  margin: 14px 0 0;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status.is-info {
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
}

/* ==========================================================================
   BÖLÜMLER
   ========================================================================== */

.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--bg-soft);
}

/* ---------- Hakkında / Evden eve (Logtra "about-area") ---------- */

.about {
  display: grid;
  gap: 48px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 8 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-blue);
}

/* Görselin arkasındaki kırmızı çerçeve */
.about-media::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 55%;
  height: 55%;
  z-index: -1;
  border-radius: var(--radius);
  background: var(--red);
}

.about-media {
  z-index: 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 28px 0;
}

/* Köşesi kesik lacivert kutu (Logtra "25 years") */
.stat-box {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  flex: none;
  background: var(--navy);
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.stat-title {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--heading);
}

.stat-text {
  margin: 0;
}

.checklist {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--heading);
  font-weight: 600;
}

.checklist .icon {
  width: 22px;
  height: 22px;
  margin-top: 0.1em;
  padding: 4px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  stroke-width: 3;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

.call-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  color: var(--heading);
  text-decoration: none;
}

.call-inline:hover {
  color: var(--red);
}

.call-inline .round-btn {
  width: 50px;
  height: 50px;
}

.call-inline small {
  display: block;
  font-size: 0.85rem;
  color: var(--body);
}

.call-inline strong {
  font-size: 1.05rem;
  font-weight: 800;
}

/* ---------- Şehir içi / Şehirlerarası ---------- */

.duo {
  display: grid;
  gap: 30px;
}

.duo-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow);
}

.duo-media {
  position: relative;
}

.duo-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--bg-blue);
}

/* Görselin köşesindeki eğik etiket */
.duo-label {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 44px 10px 20px;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
}

.duo-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px 24px;
}

.duo-body .checklist {
  flex: 1;
}

.duo-body h2 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--heading);
  text-decoration: none;
}

.link-arrow .round-btn {
  width: 40px;
  height: 40px;
}

.link-arrow:hover {
  color: var(--red);
}

.link-arrow:hover .round-btn {
  background: var(--blue);
}

/* ---------- Neden TR Nakliye (Logtra "why choose us") ---------- */

.why {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.why .section-head h2 {
  color: #fff;
}

.why .section-head p {
  color: var(--muted-dark);
}

/* Dekoratif dalgalı çizgiler */
.why-waves {
  position: absolute;
  top: 60px;
  width: 520px;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
}

.why-waves--left {
  left: -140px;
}

.why-waves--right {
  right: -140px;
  transform: scaleX(-1);
}

.why-grid {
  position: relative;
  display: grid;
  gap: 24px;
}

.why-col {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-item {
  padding: 40px 32px;
  background: var(--black);
  color: var(--muted-dark);
  transition: background-color 0.4s;
}

.why-item:hover {
  background: var(--red);
  color: #fff;
}

.why-item h3 {
  color: #fff;
}

.why-item p {
  margin: 0;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  background: var(--red);
  color: #fff;
  transition: background-color 0.4s, color 0.4s;
}

.why-item:hover .why-icon {
  background: #fff;
  color: var(--red);
}

.why-icon .icon {
  width: 28px;
  height: 28px;
}

.why-media {
  display: none;
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--blue-2);
}

/* ---------- Hizmet kartları (Logtra "feature-box") ---------- */

.features {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.feature:hover,
.feature:focus-within {
  transform: translateY(-6px);
}

/* Lacivert üst bant */
.feature-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 0 28px;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}

/* Sağdaki kırmızı eğik şeritler */
.feature-top::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 130px;
  background: linear-gradient(115deg, transparent 0 30%, var(--red) 30% 42%, transparent 42% 50%, var(--red) 50% 100%);
}

.feature-top .icon {
  position: relative;
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

/* İçi boş büyük numara */
.feature-no {
  position: relative;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
}

.feature-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 36px;
}

.feature-body p {
  flex: 1;
}

.feature h3 {
  font-size: 1.35rem;
}

.feature h3 a {
  color: var(--heading);
  text-decoration: none;
}

/* Kartın tamamını tıklanabilir yapar */
.feature h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.feature:hover .round-btn {
  background: var(--blue);
}

/* ---------- Süreç (Logtra "step-area") ---------- */

.steps {
  display: grid;
  gap: 40px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step {
  position: relative;
  text-align: center;
  counter-increment: step;
}

.step-hex {
  position: relative;
  width: 120px;
  height: 132px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.12));
}

.step-hex::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.step-hex .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  color: var(--red);
  stroke-width: 1.5;
  transform: translate(-50%, -50%);
}

/* Kırmızı numara rozeti */
.step-hex::after {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: -12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.step-arrow {
  display: none;
}

.step h3 {
  font-size: 1.2rem;
}

.step p {
  max-width: 260px;
  margin: 0 auto;
  font-size: 0.97rem;
}

/* ---------- Fiyat faktörleri (Logtra "price-area") ---------- */

.price {
  display: grid;
  gap: 30px;
  align-items: start;
}

.price-panel {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
}

.price-panel h3 {
  color: #fff;
  font-size: 1.2rem;
}

.factor-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.factor-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
}

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

.factor-list .icon {
  width: 22px;
  height: 22px;
  color: var(--red-light);
}

.price-rows {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-row {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 26px 24px;
  border: 1px solid #c9ccd8;
  border-radius: var(--radius);
  background: #fff;
}

.price-row h3 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.price-row p {
  margin: 0;
  font-size: 0.95rem;
}

.price-note {
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Hizmet bölgeleri (Logtra "portfolio" filtre düğmeleri) ---------- */

.filters {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 36px;
}

.js .filters {
  display: flex;
}

.filter {
  min-height: 44px;
  padding: 0.5rem 1.2rem;
  border: 1px solid #c9ccd8;
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* SSS sayfasındaki kategori bağlantıları (JS gerektirmez) */
.faq-nav {
  display: flex;
}

a.filter {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.faq-cat {
  margin: 2.8rem 0 1.1rem;
  padding-left: 14px;
  border-left: 4px solid var(--red);
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem);
  scroll-margin-top: 100px;
}

.faq-cat:first-child {
  margin-top: 0;
}

.filter:hover {
  border-color: var(--red);
  color: var(--red);
}

.filter[aria-pressed="true"] {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.regions {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region {
  padding: 28px 24px;
  border-top: 4px solid var(--red);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.region[hidden] {
  display: none;
}

.region h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
}

.region h3 .icon {
  color: var(--red);
}

.region h3 a {
  color: var(--heading);
  text-decoration: none;
}

.region h3 a:hover {
  color: var(--red);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tags a {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
  background: var(--bg-blue);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.tags a:hover {
  background: var(--blue);
  color: #fff;
}

.section-foot {
  margin-top: 36px;
  text-align: center;
}

/* ---------- SSS ---------- */

.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq details {
  margin-bottom: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq details[open] {
  border-left: 4px solid var(--red);
}

.faq summary {
  position: relative;
  padding: 20px 70px 20px 24px;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

/* Kırmızı artı / eksi düğmesi */
.faq summary::before,
.faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 34px;
  width: 14px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s;
  z-index: 1;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0deg);
}

.faq-q {
  margin: 0;
  font-size: 1.07rem;
  line-height: 1.45;
}

.faq summary .faq-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border-radius: 50%;
  background: var(--red);
}

.faq details[open] .faq-btn {
  background: var(--blue);
}

.faq-a {
  padding: 0 24px 22px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

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

.cta {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: var(--red);
  color: #fff;
}

/* Sağdaki lacivert eğik alan */
.cta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 34%;
  background: var(--blue);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
  display: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  margin-bottom: 0.3em;
  color: #fff;
}

.cta p {
  margin: 0;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.btn--white:hover {
  background: var(--navy);
  color: #fff;
}

/* ==========================================================================
   ALT SAYFALAR
   ========================================================================== */

/* Sayfa başlığı (Logtra iç sayfa bandı) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background: var(--navy);
  color: var(--muted-dark);
}

/* Sağdaki eğik kırmızı + mavi şeritler */
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: none;
}

.page-hero::before {
  right: 0;
  width: 30%;
  background: var(--blue-2);
  clip-path: polygon(90px 0, 100% 0, 100% 100%, 0 100%);
}

.page-hero::after {
  right: calc(30% - 34px);
  width: 64px;
  background: var(--red);
  clip-path: polygon(46px 0, 64px 0, 18px 100%, 0 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #ff4a2b;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 0.4em;
  color: #fff;
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
}

.page-hero-lead {
  max-width: 62ch;
  font-size: 1.08rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--red-light);
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--muted-dark);
}

/* İçerik + yan panel */
.content-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.sidebar {
  display: grid;
  gap: 24px;
}

.side-box {
  padding: 30px 26px;
  background: var(--bg-soft);
}

.side-box h2 {
  position: relative;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  font-size: 1.15rem;
}

.side-box h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--red);
}

.side-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: #fff;
  color: var(--heading);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.side-links a:hover,
.side-links a[aria-current="page"] {
  background: var(--red);
  color: #fff;
}

.side-cta {
  padding: 34px 28px;
  background: var(--blue);
  color: var(--muted-dark);
}

.side-cta h2 {
  color: #fff;
  font-size: 1.35rem;
}

.side-cta .btn + .btn {
  margin-top: 10px;
}

.side-cta .btn--ghost {
  font-size: 0.95rem;
}

/* Uzun metin (Bizi Tanıyın, KVKK vb.) */
.prose {
  min-width: 0;
}

.prose h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 1.6rem;
  font-size: 1.15rem;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose li::marker {
  color: var(--red);
  font-weight: 800;
}

.prose strong {
  color: var(--heading);
}

.prose .tags {
  margin-bottom: 1.2rem;
  padding-left: 0;
}

.prose .tags li {
  margin: 0;
}

.lead {
  font-size: 1.12rem;
  color: var(--heading);
}

.note {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--red);
  background: var(--bg-soft);
  font-size: 0.95rem;
}

/* Hizmet sayfası üst görseli */
.prose-media {
  position: relative;
  margin: 0 0 2rem;
}

.prose-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--bg-blue);
}

.prose-media .duo-label {
  font-size: 0.8rem;
}

/* Numaralı süreç listesi */
.step-list {
  display: grid;
  gap: 14px;
  margin: 1.2rem 0 1.5rem;
  padding: 0 !important;
  list-style: none;
  counter-reset: adim;
}

.step-list li {
  position: relative;
  margin: 0;
  padding: 18px 20px 18px 74px;
  background: var(--bg-soft);
  counter-increment: adim;
}

.step-list li::before {
  content: counter(adim, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.step-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

/* Diğer hizmetler listesinde bulunulan hizmeti gizle */
.feature:has(a[aria-current="page"]) {
  display: none;
}

/* Firma bilgileri tablosu */
.info-table {
  width: 100%;
  margin: 1rem 0 1.5rem;
  border-collapse: collapse;
  font-size: 0.97rem;
}

.info-table th,
.info-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 40%;
  color: var(--heading);
  font-weight: 700;
  background: var(--bg-soft);
}

.info-table td {
  word-break: break-word;
}

/* Değer kartları (Bizi Tanıyın) */
.value-grid {
  display: grid;
  gap: 20px;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.value-grid li {
  margin: 0;
  padding: 26px 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--red);
}

.value-grid h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.value-grid p {
  margin: 0;
  font-size: 0.97rem;
}

/* İletişim kartları */
.contact-cards {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card .why-icon {
  margin: 0;
  flex: none;
}

.contact-card h2 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0;
}

.contact-card a {
  color: var(--heading);
  font-weight: 800;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--red);
}

.contact-wrap {
  display: grid;
}

.contact-wrap .quote-panel {
  padding-inline: 16px;
}

/* ---------- İletişim sayfası ---------- */

/* Sayfa başlığının altına taşan kartlar için ek boşluk */
.page-hero--overlap {
  padding-bottom: 120px;
}

.contact-actions-wrap {
  position: relative;
  z-index: 2;
  margin-top: -80px;
}

.contact-actions {
  display: grid;
  gap: 20px;
}

.action-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 30px 28px 28px;
  border-bottom: 4px solid var(--red);
  background: #fff;
  box-shadow: 0 18px 45px rgba(1, 5, 76, 0.12);
  color: var(--body);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.action-card:hover {
  color: var(--body);
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(1, 5, 76, 0.18);
}

.action-ico {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}

.action-ico .icon {
  width: 28px;
  height: 28px;
}

.action-card--wa {
  border-bottom-color: var(--success);
}

.action-card--wa .action-ico {
  background: var(--success);
}

.action-card--mail {
  border-bottom-color: var(--blue);
}

.action-card--mail .action-ico {
  background: var(--blue);
}

.action-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.action-value {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--heading);
  word-break: break-word;
}

.action-sub {
  font-size: 0.93rem;
}

.action-go {
  position: absolute;
  top: 30px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--heading);
  transition: background-color 0.3s, color 0.3s;
}

.action-card:hover .action-go {
  background: var(--heading);
  color: #fff;
}

.contact-section {
  padding-top: 64px;
}

.contact-main {
  display: grid;
  gap: 32px;
  align-items: start;
}

.form-card {
  padding: 36px 24px;
  border-top: 4px solid var(--red);
  background: #fff;
  box-shadow: var(--shadow);
}

/* Açık zeminli form (teklif formundaki koyu stilin yerine) */
.form-light .field label {
  color: var(--heading);
}

.form-light .field input,
.form-light .field select,
.form-light .field textarea {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--heading);
  color-scheme: light;
}

.form-light .field input::placeholder,
.form-light .field textarea::placeholder {
  color: #8a8fa3;
}

.form-light .field select option {
  background: #fff;
  color: var(--heading);
}

.form-light .field input:focus,
.form-light .field select:focus,
.form-light .field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(234, 30, 0, 0.15);
}

.form-light .opt {
  color: var(--body);
}

.form-light .form-status.is-info {
  background: var(--bg-soft);
  color: var(--heading);
}

.contact-aside {
  display: grid;
  gap: 24px;
}

.info-card {
  padding: 34px 28px;
  background: var(--navy);
  color: var(--muted-dark);
}

.info-card h2 {
  margin-bottom: 1.4rem;
  font-size: 1.35rem;
  color: #fff;
}

.info-card h3 {
  margin: 1.8rem 0 0.9rem;
  font-size: 1rem;
  color: #fff;
}

.info-card .contact-list small {
  color: #8f93c0;
}

.info-card .contact-list a,
.info-card .contact-list span {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.tags--dark a {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tags--dark a:hover {
  background: var(--red);
}

/* Tıklayınca yüklenen harita (çerez ve hız için) */
.map-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(rgba(234, 30, 0, 0.06), rgba(234, 30, 0, 0.06)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(1, 5, 76, 0.07) 34px 36px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(1, 5, 76, 0.07) 34px 36px),
    var(--bg-blue);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.map-facade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 300px;
  padding: 28px 20px;
  text-align: center;
}

.map-facade .icon-pin {
  width: 48px;
  height: 48px;
  color: var(--red);
}

.map-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--heading);
}

.map-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
}

.map-facade small {
  font-size: 0.8rem;
}

/* Harita kutusu */
.map-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 40px 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(1, 5, 76, 0.9), rgba(1, 5, 76, 0.9)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.5) 38px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.5) 38px 40px);
  color: var(--muted-dark);
  text-align: center;
}

.map-box h2 {
  color: #fff;
  font-size: 1.5rem;
}

.map-box .icon-pin {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--red);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  padding: 72px 0 24px;
  background: var(--dark);
  color: #a9accb;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

.footer-brand .brand {
  margin-bottom: 1.2rem;
}

.footer-title {
  position: relative;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #fff;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--red);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #a9accb;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer .brand {
  color: #fff;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}

.contact-ico .icon {
  width: 17px;
  height: 17px;
}

.contact-list small {
  display: block;
  font-size: 0.8rem;
  color: #7f83a8;
}

.site-footer .contact-list a,
.site-footer .contact-list span {
  color: #fff;
  font-weight: 700;
  word-break: break-word;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

/* ---------- Mobil alt çubuk ---------- */

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--navy);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 60px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-bar a.is-wa .icon {
  color: #4ade80;
}

.mobile-bar a.is-primary {
  background: var(--red);
}

/* ==========================================================================
   KIRILIMLAR
   ========================================================================== */

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .field--full {
    grid-column: 1 / -1;
  }

  .features,
  .regions,
  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-row {
    grid-template-columns: 1fr auto;
  }

  .value-grid,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-call {
    left: 24px;
    right: auto;
    bottom: 24px;
    max-width: 340px;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .mobile-bar {
    display: none;
  }

  .container {
    padding-inline: 24px;
  }

  .header-cta {
    display: inline-flex;
  }

  .quote-panel {
    padding: 72px 48px;
  }

  .duo-body {
    padding: 36px 36px 40px;
  }

  .price-panel {
    padding: 40px 36px;
  }
}

@media (min-width: 960px) {
  .section {
    padding: 110px 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-route,
  .hero-curve {
    display: block;
  }

  .quote {
    grid-template-columns: 5fr 7fr;
  }

  .quote-media {
    min-height: 100%;
  }

  .quote-panel {
    padding: 72px 64px;
  }

  .quote-inner {
    max-width: 640px;
  }

  .about {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .duo {
    grid-template-columns: 1fr 1fr;
  }

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

  .why-media {
    display: block;
  }

  .features,
  .regions {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Logtra'daki gibi kademeli adımlar */
  .step:nth-child(even) {
    margin-top: 56px;
  }

  .step-arrow {
    display: block;
    position: absolute;
    top: 50px;
    right: -38px;
    width: 64px;
    height: 24px;
    color: var(--red);
  }

  .step:last-child .step-arrow {
    display: none;
  }

  .price {
    grid-template-columns: 5fr 7fr;
  }

  .price-panel {
    order: -1;
  }

  .page-hero {
    padding: 96px 0 84px;
  }

  .page-hero::before,
  .page-hero::after {
    display: block;
  }

  .page-hero--overlap {
    padding-bottom: 150px;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 64px;
  }

  .sidebar {
    position: sticky;
    top: 100px;
  }

  .contact-wrap {
    grid-template-columns: 5fr 7fr;
  }

  .contact-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-main {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px;
  }

  .form-card {
    padding: 44px 42px;
  }

  .contact-section {
    padding-top: 90px;
  }

  .contact-wrap .quote-panel {
    padding: 72px 56px;
  }


  .cta::after {
    display: block;
  }

  .cta-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  /* Topbar kaydırınca gizlenir, menü satırı yapışık kalır */
  .site-header {
    top: calc(var(--topbar-h) * -1);
  }

  .header-logo .brand-logo {
    height: 50px;
  }

  .header-logo {
    align-items: flex-end;
    padding: 0 70px 14px 32px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 46px) 100%, 0 100%);
  }

  .header-logo-wrap::after {
    right: -18px;
    width: 64px;
    clip-path: polygon(46px 0, 64px 0, 18px 100%, 0 100%);
  }

  .topbar {
    display: block;
  }

  .navbar {
    min-height: var(--nav-h);
    padding: 0 24px 0 48px;
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    max-height: none;
    overflow: visible;
    background: none;
    box-shadow: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
  }

  .nav-link {
    width: auto;
    padding: 0.6rem 0.75rem;
    color: #fff;
    font-size: 0.97rem;
  }

  .nav-link:hover,
  .nav-link[aria-current="page"],
  .has-sub:has([aria-current="page"]) > .nav-link {
    color: var(--red-light);
  }

  .has-sub {
    position: relative;
  }

  .submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 250px;
    padding: 0.6rem 0;
    background: #fff;
    border-top: 3px solid var(--red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  }

  /* Menü ile alt menü arasındaki boşlukta hover kopmasın */
  .submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -11px;
    height: 11px;
  }

  .has-sub:hover > .submenu,
  .has-sub:focus-within > .submenu {
    display: block;
  }

  .submenu a {
    border-left: 0;
    padding: 0.55rem 1.25rem;
  }

  .submenu a:hover {
    background: var(--bg-soft);
    padding-left: 1.5rem;
  }

  .nav-cta-item {
    display: none;
  }

  .contact-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
