@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  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: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  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: "Manrope";
  src: url("../fonts/manrope-variable-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  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";
  src: url("../fonts/manrope-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  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 {
  --paper: #f7faf9;
  --paper-strong: #ffffff;
  --mist: #eaf5f4;
  --mist-deep: #d7eeee;
  --ink: #0b2538;
  --ink-soft: #496170;
  --sea: #27d3c2;
  --sea-deep: #0da89f;
  --sea-light: #63e6dc;
  --amber: #f3ad3f;
  --amber-strong: #dc901f;
  --sun: #f3ad3f;
  --sun-soft: #ffd98f;
  --line: rgba(11, 37, 56, 0.12);
  --line-strong: rgba(11, 37, 56, 0.2);
  --shadow: 0 24px 70px rgba(24, 78, 88, 0.13);
  --display: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
  --container: 1320px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 250, 249, 0.86);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--line);
  box-shadow: 0 10px 38px rgba(11, 37, 56, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

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

.brand-logo {
  width: 230px;
  height: auto;
  display: block;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sea);
  background: var(--paper-strong);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: var(--paper-strong);
  stroke: var(--sea-deep);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--amber);
  stroke: var(--ink);
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 25px;
  line-height: 0.95;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--sea);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

.header-call,
.header-whatsapp {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  background: var(--paper-strong);
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-whatsapp {
  color: white;
  border-color: var(--sea-deep);
  background: var(--sea-deep);
}

.header-call:hover,
.header-whatsapp:hover {
  color: white;
  background: var(--ink);
  transform: translateY(-2px);
}

.header-call svg,
.header-whatsapp svg,
.button svg,
.mobile-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.button-secondary svg,
.contact-whatsapp svg,
.mobile-actions a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.header-call svg {
  width: 17px;
  height: 17px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: calc(var(--header-height) + 62px) 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-wash {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-wash::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -160px;
  top: -190px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 48%, rgba(118, 201, 207, 0.34), rgba(231, 243, 243, 0.78) 47%, rgba(247, 250, 249, 0) 72%);
}

.hero-wash::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 2px;
  right: 3%;
  top: 142px;
  background: linear-gradient(90deg, transparent, var(--sea-light));
  transform: rotate(-7deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: 66px;
}

.hero-copy {
  padding: 42px 0 68px;
}

.hero-copy h1,
.section-heading h2,
.services-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 670px;
  font-size: clamp(74px, 7.1vw, 112px);
  line-height: 0.82;
}

.hero-copy h1 em,
.section-heading h2 em,
.services-copy h2 em,
.faq-intro h2 em,
.contact-copy h2 em {
  position: relative;
  display: inline-block;
  color: var(--sea-deep);
  font-style: normal;
}

.hero-copy h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 17px;
  left: -2px;
  right: 0;
  bottom: 3px;
  background: var(--amber);
  opacity: 0.86;
}

.hero-copy > p {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber-strong);
  box-shadow: 0 12px 24px rgba(232, 150, 31, 0.18);
}

.button-primary:hover {
  background: #ffbd52;
  box-shadow: 0 15px 32px rgba(232, 150, 31, 0.26);
}

.button-secondary {
  color: var(--sea-deep);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--sea);
}

.button-secondary:hover {
  background: var(--mist);
}

.button-secondary svg,
.contact-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.hero-note a {
  margin-left: 6px;
  color: var(--ink);
  font-weight: 800;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 5px rgba(38, 141, 157, 0.12);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%, 48% { box-shadow: 0 0 0 5px rgba(38, 141, 157, 0.12); }
  68% { box-shadow: 0 0 0 11px rgba(38, 141, 157, 0); }
  100% { box-shadow: 0 0 0 5px rgba(38, 141, 157, 0); }
}

.hero-visual {
  position: relative;
  align-self: end;
  padding-bottom: 70px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -24px -28px 110px 70px;
  border: 1px solid var(--sea-light);
  background: rgba(231, 243, 243, 0.34);
}

.photo-frame {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(11, 37, 56, 0.18);
  background: var(--mist-deep);
  box-shadow: var(--shadow);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(5, 35, 49, 0.64), transparent);
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: white;
}

.photo-caption span {
  padding-top: 8px;
  border-top: 2px solid var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-caption strong {
  text-align: right;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.route-board {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: 23px;
  width: min(92%, 510px);
  padding: 20px 24px 17px;
  border: 1px solid var(--sea);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 17px 40px rgba(15, 83, 96, 0.13);
}

.route-track {
  position: relative;
  height: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.route-track::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 6px;
  height: 2px;
  background: var(--sea-light);
}

.route-track span {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 3px solid var(--sea);
  border-radius: 50%;
  background: white;
}

.route-track span:nth-child(2) {
  background: var(--amber);
  border-color: var(--ink);
}

.route-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.district-rail {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-inline: 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(243, 173, 63, 0.1), rgba(255, 255, 255, 0.55) 42%, rgba(38, 141, 157, 0.07));
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.district-rail i {
  width: 4px;
  height: 4px;
  flex: none;
  border-radius: 50%;
  background: var(--sea-light);
}

.route-story.section {
  padding-bottom: clamp(44px, 3vw, 50px);
  background: var(--paper-strong);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: 120px;
  align-items: end;
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--sea);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-index::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--sea-light);
}

.section-heading h2,
.services-copy h2,
.faq-intro h2,
.contact-copy h2 {
  font-size: clamp(58px, 6.2vw, 91px);
  line-height: 0.96;
}

.route-intro {
  padding-bottom: 7px;
}

.route-intro p,
.areas-head > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.78;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  color: var(--sea);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 74px;
  background: transparent;
}

.step {
  position: relative;
  min-height: 252px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 11px;
  padding: 38px 32px;
  border-radius: 18px;
  background: #f8cd7d;
  text-align: center;
  box-shadow: 0 16px 38px rgba(117, 75, 14, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step:nth-child(2) { background: #f6bd59; }

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(117, 75, 14, 0.14);
}

.step > span {
  display: block;
  color: var(--sea);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.step p {
  max-width: 270px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.step-accent {
  color: var(--ink);
  background: var(--amber);
}

.step-accent > span {
  color: var(--ink);
  opacity: 0.55;
}

.step-accent p {
  color: rgba(11, 37, 56, 0.78);
}

.step-accent a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.network {
  position: relative;
  height: 220px;
  margin-top: 70px;
}

.network-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 78px;
  height: 2px;
  background: var(--sea-light);
}

.network-line::before,
.network-line::after {
  content: none;
}

.network-line::before { left: -1px; }
.network-line::after { right: -1px; }

.network-stop {
  position: absolute;
  top: 65px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.network-stop > span {
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sea);
  box-shadow: none;
}

.network-stop strong {
  margin-top: 19px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.network-stop small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 10px;
}

.network-stop-a { left: 3%; }
.network-stop-b { left: 31%; }
.network-stop-c { left: 63%; }

.network-stop-d {
  top: 154px;
  left: 82%;
}

.network-stop-d > span {
  background: var(--amber);
  border-color: var(--ink);
  box-shadow: none;
}

.network-branch {
  position: absolute;
  width: 2px;
  height: 87px;
  top: 79px;
  left: 83%;
  background: var(--sea-light);
  transform: rotate(-19deg);
  transform-origin: top;
}

.services {
  overflow: clip;
  background: var(--mist);
}

.services::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -300px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(38, 141, 157, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.17), 0 0 0 105px rgba(38, 141, 157, 0.05);
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1.18fr);
  gap: 110px;
}

.services-copy {
  position: sticky;
  top: calc(var(--header-height) + 50px);
  align-self: start;
}

.services-copy p {
  max-width: 470px;
  margin: 28px 0 32px;
  color: var(--ink-soft);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.service-row {
  position: relative;
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 12px;
  border-bottom: 1px solid var(--line-strong);
  transition: padding 180ms ease, background 180ms ease;
}

.service-row:nth-child(odd) {
  border-right: 1px solid var(--line-strong);
}

.service-row:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.service-row > span {
  color: var(--sea);
  font-family: var(--display);
  font-size: 43px;
  font-weight: 700;
  line-height: 1;
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-row p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.service-row > i {
  color: var(--sea);
  font-size: 20px;
  font-style: normal;
  transition: transform 180ms ease;
}

.service-row:hover > i {
  transform: translate(4px, -4px);
}

.areas {
  background: var(--paper-strong);
}

.areas-head {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 120px;
  align-items: end;
}

.areas-head > p {
  padding-bottom: 9px;
}

.area-board {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  margin-top: 72px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(17, 78, 92, 0.08);
}

.area-map {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(38, 141, 157, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 141, 157, 0.065) 1px, transparent 1px),
    linear-gradient(160deg, #edf8f7 0%, #f7faf9 62%);
  background-size: 54px 54px, 54px 54px, auto;
}

.area-map svg {
  position: absolute;
  width: 106%;
  height: 100%;
  left: -3%;
  bottom: 0;
}

.coast-path,
.route-path,
.route-branch {
  fill: none;
  stroke-linecap: round;
}

.coast-path {
  stroke: rgba(38, 141, 157, 0.14);
  stroke-width: 78;
}

.route-path,
.route-branch {
  stroke: var(--sea);
  stroke-width: 4;
  stroke-dasharray: 1 0;
}

.area-map circle {
  fill: var(--amber);
  stroke: var(--ink);
  stroke-width: 3;
}

.map-label {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 7px 18px rgba(11, 37, 56, 0.06);
}

.map-label-1 { left: 5%; top: 57%; }
.map-label-2 { left: 30%; top: 43%; }
.map-label-3 { left: 53%; top: 28%; }
.map-label-4 { left: 81%; top: 12%; }
.map-label-5 { left: 55%; top: 76%; }

.map-water {
  position: absolute;
  left: 7%;
  bottom: 26px;
  color: var(--sea);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.area-list > div {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 23px 30px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.area-list > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.area-list > div:last-child {
  grid-column: 1 / -1;
  border-bottom: 0;
  border-right: 0;
}

.area-list > div:hover {
  padding-left: 38px;
  background: var(--mist);
}

.area-list strong {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.area-list span {
  color: var(--ink-soft);
  font-size: 11px;
}

.faq {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
  gap: 120px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 50px);
  align-self: start;
}

.faq-intro p {
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.accordion {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 4px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.faq-item button i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  border: 1px solid var(--sea);
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 13px;
  height: 1px;
  background: var(--sea-deep);
  transition: transform 180ms ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i {
  background: var(--amber);
  border-color: var(--ink);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 650px;
  margin: -7px 0 28px;
  padding-right: 46px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.article-section {
  overflow: clip;
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(560px, 1.28fr);
  gap: 120px;
  align-items: start;
}

.article-intro {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.article-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.2vw, 88px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.012em;
  text-transform: uppercase;
}

.article-intro h2 em {
  color: var(--sea);
  font-style: normal;
}

.article-intro > p {
  max-width: 420px;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.article-body {
  position: relative;
  padding: 9px 0 14px;
}

.article-content h3 {
  margin: 70px 0 22px;
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 49px);
  line-height: 1.12;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.article-content h3:first-child {
  margin-top: 0;
}

.article-content p {
  max-width: 700px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
}

.article-content strong {
  color: var(--ink);
  font-weight: 800;
}

.article-more[hidden] {
  display: none;
}

.article-toggle {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 14px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--amber);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.article-toggle i {
  font-size: 18px;
  font-style: normal;
  transition: transform 180ms ease;
}

.article-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.driver-callout {
  position: relative;
  padding-block: 72px 36px;
  overflow: hidden;
  background: var(--paper);
}

.driver-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 72px;
  align-items: center;
  padding: 66px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(39, 211, 194, .19), transparent 33%),
    linear-gradient(135deg, #0e2225 0%, #081517 58%, #0a2828 100%);
  box-shadow: var(--shadow);
}

.driver-panel::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  bottom: -210px;
  border: 68px solid rgba(39, 211, 194, .08);
  border-radius: 50%;
}

.driver-copy,
.driver-actions {
  position: relative;
  z-index: 1;
}

.driver-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sea-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.driver-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--sea);
}

.driver-copy h2 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(62px, 6vw, 88px);
  line-height: .88;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.driver-copy h2 em {
  color: var(--sea);
  font-style: normal;
}

.driver-copy p {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.driver-actions {
  display: grid;
  gap: 12px;
}

.driver-phone,
.driver-whatsapp {
  min-height: 128px;
  display: grid;
  align-content: center;
  padding: 24px 30px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.driver-phone {
  background: rgba(7, 19, 21, .78);
}

.driver-whatsapp {
  grid-template-columns: 1fr auto;
  align-items: center;
  color: #071315;
  background: linear-gradient(135deg, var(--sea-light), var(--sea));
}

.driver-phone:hover,
.driver-whatsapp:hover {
  transform: translateY(-4px);
  border-color: var(--sea-light);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
}

.driver-phone small,
.driver-whatsapp small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.driver-whatsapp small {
  color: rgba(7, 19, 21, .68);
}

.driver-phone strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 47px);
  line-height: 1;
}

.driver-phone span {
  margin-top: 13px;
  color: var(--sea-light);
  font-size: 12px;
  font-weight: 800;
}

.driver-whatsapp span {
  display: grid;
}

.driver-whatsapp strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.driver-phone i,
.driver-whatsapp > i {
  font-style: normal;
}

.driver-whatsapp > i {
  font-size: 24px;
}

.contact {
  padding-top: 48px;
  background: linear-gradient(to bottom, var(--paper) 50%, var(--mist) 50%);
}

.contact-panel {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  gap: 80px;
  align-items: center;
  padding: 70px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(38, 141, 157, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 141, 157, 0.055) 1px, transparent 1px),
    white;
  background-size: 52px 52px, 52px 52px, auto;
  box-shadow: var(--shadow);
}

.contact-panel::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  left: -120px;
  bottom: -220px;
  border: 72px solid rgba(38, 141, 157, 0.08);
  border-radius: 50%;
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-line {
  display: block;
  width: 78px;
  height: 5px;
  margin-bottom: 33px;
  background: var(--amber);
}

.contact-copy p {
  max-width: 580px;
  margin: 27px 0 0;
  color: var(--ink-soft);
}

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

.contact-phone,
.contact-whatsapp {
  min-height: 132px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(247, 250, 249, 0.92);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-phone:hover,
.contact-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(11, 37, 56, 0.1);
}

.contact-phone {
  display: grid;
  align-content: center;
  padding: 24px 30px;
}

.contact-phone small,
.contact-whatsapp small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-phone strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 47px);
  line-height: 1;
  letter-spacing: 0.015em;
}

.contact-phone > span {
  margin-top: 12px;
  color: var(--sea-deep);
  font-size: 12px;
  font-weight: 800;
}

.contact-phone i,
.contact-whatsapp > i {
  font-style: normal;
}

.contact-whatsapp {
  gap: 18px;
  padding: 22px 30px;
  color: white;
  background: var(--sea-deep);
  border-color: var(--sea-deep);
}

.contact-whatsapp svg {
  width: 39px;
  height: 39px;
  flex: none;
}

.contact-whatsapp span {
  display: grid;
  line-height: 1;
}

.contact-whatsapp small {
  color: rgba(255, 255, 255, 0.72);
}

.contact-whatsapp strong {
  margin-top: 9px;
  font-family: var(--display);
  font-size: 30px;
  text-transform: uppercase;
}

.contact-whatsapp > i {
  margin-left: auto;
  font-size: 22px;
}

.site-footer {
  padding: 78px 0 28px;
  background: var(--mist);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 70px;
  align-items: center;
  padding-bottom: 65px;
}

.footer-main p {
  max-width: 380px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: flex-end;
}

.footer-main nav a {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-actions {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .7, .2, 1);
}

.js [data-reveal][data-reveal-delay="1"] { transition-delay: 100ms; }
.js [data-reveal][data-reveal-delay="2"] { transition-delay: 200ms; }

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root { --container: 1040px; }

  .desktop-nav { gap: 22px; }
  .header-actions { gap: 6px; }
  .header-call, .header-whatsapp { padding-inline: 14px; }
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 38px; }
  .hero-copy h1 { font-size: clamp(72px, 8vw, 95px); }
  .photo-frame, .photo-frame img { min-height: 480px; height: 480px; }
  .route-layout, .areas-head { gap: 60px; }
  .services-layout { gap: 68px; }
  .faq-layout { gap: 70px; }
  .contact-panel { gap: 52px; padding: 60px 52px; }
}

@media (max-width: 1070px) {
  :root { --header-height: 76px; }

  .container { width: min(calc(100% - 38px), var(--container)); }
  .section { padding: 100px 0; }
  .desktop-nav, .header-actions { display: none; }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid var(--line-strong);
    background: white;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    padding: 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 45px rgba(11, 37, 56, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 14px 7px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-nav a:last-child { border-bottom: 0; }

  .hero { padding-top: calc(var(--header-height) + 38px); }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { padding: 22px 0 18px; }
  .hero-copy h1 { font-size: clamp(76px, 13vw, 112px); }
  .hero-copy > p { max-width: 670px; }
  .hero-visual { width: min(100%, 740px); justify-self: end; }
  .hero-visual::before { inset: -18px -20px 100px 60px; }
  .photo-frame, .photo-frame img { min-height: 540px; height: 540px; }
  .district-rail { overflow-x: auto; justify-content: flex-start; white-space: nowrap; }

  .route-layout, .services-layout, .areas-head, .faq-layout, .article-shell, .contact-panel {
    grid-template-columns: 1fr;
  }

  .route-layout, .areas-head { gap: 34px; }
  .steps-grid { margin-top: 55px; }
  .network-stop-b { left: 28%; }
  .network-stop-c { left: 59%; }
  .network-stop-d { left: 79%; }
  .network-branch { left: 80%; }

  .services-layout { gap: 58px; }
  .services-copy, .faq-intro, .article-intro { position: static; }
  .services-copy p { max-width: 650px; }

  .area-board { grid-template-columns: 1fr; }
  .area-map { border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .area-list { grid-template-columns: repeat(2, 1fr); }
  .area-list > div { min-height: 112px; border-right: 1px solid var(--line); }

  .faq-layout { gap: 52px; }
  .article-shell { gap: 48px; }
  .article-intro > p { max-width: 650px; }
  .contact-panel { gap: 45px; padding: 55px; }
  .contact-copy p { max-width: 650px; }
  .contact-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 700px) {
  .route-story.section { padding-bottom: 18px; }

  :root { --header-height: 70px; }

  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-mark svg { width: 27px; height: 27px; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { font-size: 7px; }
  .menu-toggle { width: 44px; height: 44px; }

  .hero { min-height: auto; padding-top: calc(var(--header-height) + 22px); }
  .hero-wash::before { width: 520px; height: 520px; right: -280px; top: -120px; }
  .hero-copy { padding-top: 17px; }
  .hero-copy h1 { font-size: clamp(46px, 14.5vw, 57px); line-height: .87; text-wrap: balance; }
  .hero-copy h1 em::after { height: 11px; bottom: 1px; }
  .section-heading h2,
  .services-copy h2,
  .faq-intro h2,
  .contact-copy h2 { text-wrap: balance; }
  .section-heading h2 em,
  .services-copy h2 em,
  .faq-intro h2 em,
  .contact-copy h2 em { display: inline; white-space: normal; }
  .hero-copy > p { margin-top: 23px; font-size: 15px; line-height: 1.68; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 26px; }
  .button { min-height: 54px; padding: 0 16px; font-size: 12px; }
  .button svg { width: 17px; height: 17px; }
  .hero-note { flex-wrap: wrap; row-gap: 5px; margin-top: 24px; }
  .hero-note a { width: calc(100% - 25px); margin-left: 25px; }
  .hero-visual { padding-bottom: 0; }
  .hero-visual::before { inset: -10px -14px 28px 37px; }
  .photo-frame, .photo-frame img { min-height: 385px; height: 385px; }
  .photo-caption { left: 19px; right: 19px; bottom: 18px; }
  .photo-caption strong { font-size: 18px; }
  .route-board { position: relative; inset: auto; width: 100%; margin-top: -1px; padding: 16px 16px 13px; box-shadow: none; }
  .route-labels { font-size: 9px; }
  .district-rail {
    width: min(calc(100% - 28px), var(--container));
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    overflow: hidden;
    white-space: normal;
  }
  .district-rail i { display: none; }
  .district-rail span {
    min-height: 38px;
    display: grid;
    place-items: center;
    padding: 6px;
    border: 1px solid var(--line);
    background: var(--paper-strong);
    text-align: center;
    line-height: 1.2;
  }
  .district-rail span:last-child { grid-column: 1 / -1; }

  .section-index { margin-bottom: 19px; }
  .section-heading h2, .services-copy h2, .faq-intro h2, .contact-copy h2 { font-size: clamp(46px, 14.5vw, 58px); line-height: .99; }
  .route-intro p, .areas-head > p { font-size: 15px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { min-height: 190px; padding: 32px 24px; }
  .step h3 { margin-top: 0; }
  .network { height: auto; display: grid; gap: 0; margin-top: 52px; padding-left: 26px; }
  .network-line { left: 8px; right: auto; top: 12px; bottom: 20px; width: 2px; height: auto; }
  .network-line::before, .network-line::after { width: 20px; height: 20px; left: -9px; top: -1px; }
  .network-line::after { top: auto; bottom: -1px; right: auto; }
  .network-stop { position: relative; inset: auto !important; min-height: 91px; display: grid; grid-template-columns: 24px 1fr; grid-template-rows: auto auto; column-gap: 16px; justify-items: start; text-align: left; }
  .network-stop > span { grid-row: 1 / 3; width: 18px; height: 18px; margin-top: 2px; border-width: 2px; }
  .network-stop strong { margin: 0; font-size: 19px; }
  .network-stop small { margin: 3px 0 0; }
  .network-branch { display: none; }

  .services-layout { gap: 42px; }
  .services-copy p { font-size: 14px; }
  .service-list { grid-template-columns: 1fr; }
  .service-row { min-height: 112px; grid-template-columns: 1fr auto; gap: 16px; padding: 20px 6px; }
  .service-row:nth-child(odd) { border-right: 0; }
  .service-row:hover { padding-inline: 7px; }
  .service-row > span { font-size: 35px; }
  .service-row h3 { font-size: 25px; }

  .area-board { min-height: auto; margin-top: 50px; }
  .area-map { min-height: 390px; }
  .map-label { font-size: 12px; padding: 6px 8px; }
  .map-label-1 { left: 3%; top: 56%; }
  .map-label-2 { left: 26%; top: 43%; }
  .map-label-3 { left: 49%; top: 29%; }
  .map-label-4 { left: auto; right: 3%; top: 12%; }
  .map-label-5 { left: 51%; top: 75%; }
  .area-list { grid-template-columns: 1fr; }
  .area-list > div,
  .area-list > div:nth-child(odd) { min-height: 95px; border-right: 0; }
  .area-list > div:last-child { grid-column: auto; }

  .faq-layout { gap: 42px; }
  .faq-item button { min-height: 96px; gap: 20px; padding-block: 24px; }
  .faq-item button span { font-size: 20px; line-height: 1.2; }
  .faq-answer p { padding-right: 8px; font-size: 13px; line-height: 1.85; }

  .article-shell { gap: 36px; }
  .article-intro h2 { font-size: clamp(46px, 14.5vw, 58px); line-height: .99; }
  .article-body { padding-left: 0; }
  .article-content h3 { margin-top: 52px; font-size: 32px; line-height: 1.14; }
  .article-content p { margin-bottom: 24px; font-size: 14px; line-height: 1.9; }

  .contact { padding-top: 24px; background: linear-gradient(to bottom, var(--paper) 28%, var(--mist) 28%); }
  .contact-panel { width: calc(100% - 20px); min-height: auto; gap: 36px; padding: 48px 26px 28px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-phone, .contact-whatsapp { min-height: 118px; }
  .contact-phone { padding: 21px; }
  .contact-phone strong { font-size: 37px; }
  .contact-whatsapp { padding: 20px 22px; }

  .site-footer { padding-top: 65px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 45px; }
  .footer-main nav { grid-column: auto; justify-content: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }

  .mobile-actions {
    position: fixed;
    z-index: 120;
    inset: auto 0 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 7px 7px calc(7px + env(safe-area-inset-bottom));
    gap: 7px;
    border-top: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -10px 30px rgba(11, 37, 56, 0.08);
  }

  .mobile-actions a {
    min-width: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--ink);
    background: var(--amber);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-actions a:last-child {
    color: white;
    background: var(--sea-deep);
  }

  .mobile-actions a:active {
    transform: scale(.98);
  }
}

/* Şoför ilanı — keskin, açık zeminli Bakırköy bandı */
.bkr-hire {
  color: var(--ink);
  padding-block: 0;
  border-radius: 0;
  background: var(--paper-strong);
  box-shadow: none;
}

.bkr-hire-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(210px, .62fr) minmax(190px, .55fr);
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.bkr-hire-copy {
  align-self: center;
  padding: 30px 38px 30px 30px;
  border-radius: 0;
  box-shadow: none;
}

.bkr-hire-kicker,
.bkr-hire-phone small,
.bkr-hire-whatsapp small {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bkr-hire-kicker {
  color: var(--sea-deep);
}

.bkr-hire-copy h2 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.bkr-hire-copy h2 em {
  color: var(--sea-deep);
  font-style: normal;
}

.bkr-hire-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.bkr-hire-phone,
.bkr-hire-whatsapp {
  min-width: 0;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 26px;
  border: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  transition: color 180ms ease, background 180ms ease;
}

.bkr-hire-phone {
  color: var(--ink);
  background: #fff9ec;
}

.bkr-hire-whatsapp {
  color: var(--ink);
  background: #eaf7f5;
}

.bkr-hire-phone small {
  color: var(--amber-strong);
}

.bkr-hire-whatsapp small {
  color: var(--sea-deep);
}

.bkr-hire-phone strong,
.bkr-hire-whatsapp strong {
  overflow-wrap: anywhere;
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(27px, 2.35vw, 36px);
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.bkr-hire-phone span,
.bkr-hire-whatsapp span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 800;
}

.bkr-hire-phone i,
.bkr-hire-whatsapp i {
  font-style: normal;
  transition: transform 180ms ease;
}

.bkr-hire-phone:hover,
.bkr-hire-whatsapp:hover {
  color: #fff;
  background: var(--ink);
}

.bkr-hire-phone:hover {
  color: var(--ink);
  background: var(--sun-soft);
}

.bkr-hire-phone:hover i,
.bkr-hire-whatsapp:hover i {
  transform: translate(3px, -3px);
}

@media (min-width: 761px) {
  .bkr-hire-card { min-height: 252px; }
}

@media (max-width: 760px) {
  .bkr-hire {
    padding-block: 0;
  }

  .bkr-hire-card {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 0;
  }

  .bkr-hire-copy {
    padding: 22px 18px 18px;
    border-radius: 0;
  }

  .bkr-hire-copy h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .bkr-hire-phone,
  .bkr-hire-whatsapp {
    width: 100%;
    min-height: 82px;
    padding: 15px 18px;
    border-left: 0;
    border-top: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .bkr-hire-phone strong,
  .bkr-hire-whatsapp strong {
    margin-top: 5px;
    font-size: 25px;
  }

  .bkr-hire-phone span,
  .bkr-hire-whatsapp span {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bkr-hire-phone,
  .bkr-hire-whatsapp,
  .bkr-hire-phone i,
  .bkr-hire-whatsapp i {
    transition: none;
  }
}

@media (max-width: 370px) {
  .hero-actions { grid-template-columns: 1fr; }
  .hero-note a { width: auto; margin-left: 0; }
  .photo-frame, .photo-frame img { min-height: 350px; height: 350px; }
  .photo-caption strong { font-size: 16px; }
  .route-board { width: calc(100% - 8px); }
  .mobile-actions { gap: 5px; padding-inline: 5px; }
  .mobile-actions a { gap: 6px; font-size: 11px; }
}

@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; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* Bakırköy siyah–turkuaz kimlik */
html {
  color-scheme: dark;
}

body {
  background:
    radial-gradient(circle at 76% 5%, rgba(39, 211, 194, .08), transparent 28%),
    var(--paper);
}

::selection {
  color: #071315;
  background: var(--sea-light);
}

:focus-visible {
  outline-color: var(--sea-light);
  box-shadow: 0 0 0 2px #071315;
}

.site-header {
  background: rgba(7, 19, 21, .8);
}

.site-header.is-scrolled {
  background: rgba(7, 19, 21, .96);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .34);
}

.header-inner {
  gap: 24px;
}

.desktop-nav {
  gap: 24px;
}

.header-call,
.header-whatsapp {
  border-color: var(--line-strong);
  background: rgba(14, 34, 37, .84);
}

.header-call {
  color: #071315;
  border-color: var(--sun);
  background: var(--sun);
}

.header-whatsapp {
  color: #071315;
  border-color: var(--sea);
  background: var(--sea);
}

.header-call:hover {
  color: #071315;
  border-color: var(--sun-soft);
  background: var(--sun-soft);
}

.header-whatsapp:hover {
  color: #071315;
  border-color: var(--sea-light);
  background: var(--sea-light);
}

.hero {
  background:
    radial-gradient(circle at 73% 18%, rgba(39, 211, 194, .16), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(255, 196, 61, .08), transparent 25%),
    linear-gradient(118deg, #071315 0%, #0a1b1d 48%, #0d292a 100%);
}

.hero-wash::before {
  background: radial-gradient(circle at 45% 48%, rgba(39, 211, 194, .2), rgba(14, 34, 37, .12) 47%, transparent 72%);
}

.hero-wash::after {
  opacity: .65;
  background: linear-gradient(90deg, transparent, var(--sea-light), transparent);
}

.hero-copy h1 em::after {
  opacity: .6;
  background: linear-gradient(90deg, var(--sea), var(--sea-light) 58%, var(--sun));
}

.button-primary {
  color: #071315;
  border-color: var(--sun);
  background: linear-gradient(135deg, var(--sun-soft), var(--sun));
  box-shadow: 0 16px 38px rgba(255, 196, 61, .16);
}

.button-primary:hover {
  color: #071315;
  border-color: var(--sun-soft);
  background: var(--sun-soft);
  box-shadow: 0 18px 42px rgba(255, 196, 61, .24);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(14, 34, 37, .78);
}

.button-secondary:hover {
  color: #071315;
  border-color: var(--sea);
  background: var(--sea);
}

.photo-frame {
  border-color: var(--line-strong);
  background: #050b0c;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

.photo-frame::after {
  background: linear-gradient(to top, rgba(2, 11, 12, .82), rgba(2, 11, 12, .06) 58%, transparent);
}

.route-board {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(8, 23, 25, .95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
}

.route-track > span {
  background: var(--paper-strong);
}

.district-rail {
  color: var(--ink-soft);
  background: linear-gradient(90deg, rgba(39, 211, 194, .08), rgba(14, 34, 37, .72) 42%, rgba(39, 211, 194, .04));
}

.route,
.faq,
.driver-callout {
  background: var(--paper);
}

.step {
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, #102a2d, #0a191b);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .28);
}

.step:nth-child(2) {
  background: linear-gradient(145deg, #123235, #0b1e20);
}

.step-accent {
  color: #071315;
  border-color: var(--sun);
  background: linear-gradient(145deg, var(--sun-soft), var(--sun));
}

.step-accent > span,
.step-accent p {
  color: #071315;
}

.step:hover {
  border-color: var(--sea-light);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .36);
}

.network-stop > span {
  border-color: var(--sea-light);
  background: var(--sea);
}

.network-stop-d > span {
  border-color: var(--sun-soft);
  background: var(--sun);
}

.services {
  background:
    radial-gradient(circle at 92% 15%, rgba(39, 211, 194, .09), transparent 25%),
    var(--mist);
}

.service-row:hover {
  background: rgba(39, 211, 194, .075);
}

.areas,
.article-section {
  background: var(--paper-strong);
}

.area-board {
  background: #09191b;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
}

.area-map {
  background:
    linear-gradient(rgba(99, 230, 220, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 230, 220, .05) 1px, transparent 1px),
    linear-gradient(160deg, #0e2528 0%, #071315 64%);
  background-size: 54px 54px, 54px 54px, auto;
}

.map-label {
  color: var(--ink);
  background: rgba(7, 19, 21, .9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}

.area-list > div:hover {
  background: rgba(39, 211, 194, .08);
}

.faq-item button[aria-expanded="true"] i {
  border-color: var(--sun-soft);
  background: var(--sun);
}

.article-toggle {
  color: #071315;
  border-color: var(--sun);
  background: linear-gradient(135deg, var(--sun-soft), var(--sun));
}

.driver-panel {
  background:
    radial-gradient(circle at 84% 18%, rgba(39, 211, 194, .19), transparent 33%),
    radial-gradient(circle at 13% 88%, rgba(255, 196, 61, .08), transparent 28%),
    linear-gradient(135deg, #0e2225 0%, #081517 58%, #0a2828 100%);
}

.driver-copy h2 em,
.driver-phone span {
  color: var(--sun);
}

.driver-phone {
  border-color: rgba(255, 196, 61, .32);
}

.contact {
  background: linear-gradient(to bottom, var(--paper) 50%, var(--mist) 50%);
}

.contact-panel {
  background:
    linear-gradient(rgba(99, 230, 220, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 230, 220, .045) 1px, transparent 1px),
    linear-gradient(145deg, #0d2426, #081517);
  background-size: 52px 52px, 52px 52px, auto;
}

.contact-phone {
  background: rgba(7, 19, 21, .86);
}

.contact-whatsapp {
  color: #071315;
  border-color: var(--sea);
  background: linear-gradient(135deg, var(--sea-light), var(--sea));
}

.contact-whatsapp small {
  color: rgba(7, 19, 21, .68);
}

.site-footer {
  background: #061012;
}

@media (max-width: 1070px) {
  .menu-toggle {
    border-color: var(--line-strong);
    background: var(--paper-strong);
  }

  .mobile-nav {
    background: rgba(7, 19, 21, .98);
    box-shadow: 0 24px 45px rgba(0, 0, 0, .36);
  }
}

@media (max-width: 900px) {
  .driver-panel {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 52px;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    width: 238px;
  }

  .driver-callout {
    padding-block: 34px 18px;
  }

  .driver-panel {
    min-height: auto;
    gap: 34px;
    padding: 42px 24px 24px;
    border-radius: 20px;
  }

  .driver-copy h2 {
    font-size: clamp(48px, 14.5vw, 60px);
  }

  .driver-copy p {
    margin-top: 24px;
    font-size: 14px;
  }

  .driver-phone,
  .driver-whatsapp {
    min-height: 116px;
    padding: 21px;
  }

  .driver-phone strong {
    font-size: 37px;
  }

  .mobile-actions {
    background: rgba(7, 19, 21, .97);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .28);
  }

  .mobile-actions a,
  .mobile-actions a:last-child {
    color: #071315;
    background: var(--sun);
  }

  .mobile-actions a:last-child {
    background: var(--sea);
  }
}

/* Açık zeminli araç galerisi */
.fleet-gallery {
  position: relative;
  overflow: hidden;
  color: #071315;
  background:
    radial-gradient(circle at 8% 18%, rgba(39, 211, 194, .16), transparent 24%),
    radial-gradient(circle at 92% 78%, rgba(255, 196, 61, .16), transparent 20%),
    #f7faf9;
}

.fleet-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 19, 21, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 19, 21, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.fleet-heading,
.fleet-grid {
  position: relative;
  z-index: 1;
}

.fleet-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(38px, 7vw, 116px);
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(7, 19, 21, .15);
}

.fleet-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #0b7773;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fleet-kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #27d3c2 0 62%, #ffc43d 62%);
}

.fleet-heading h2 {
  max-width: 760px;
  color: #071315;
  font-family: var(--display);
  font-size: clamp(54px, 6.3vw, 100px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.fleet-heading h2 em {
  color: #0b7773;
  font-style: normal;
}

.fleet-heading > p {
  max-width: 48ch;
  color: #496563;
  font-size: 16px;
  line-height: 1.8;
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 22px;
  margin-top: 34px;
}

.fleet-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(7, 19, 21, .2);
  border-radius: 26px;
  background: #071315;
  box-shadow: 0 24px 64px rgba(7, 19, 21, .16);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s ease;
}

.fleet-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 4px;
  transform: translateX(-105%);
  background: linear-gradient(90deg, #27d3c2, #ffc43d);
  transition: transform .55s var(--ease);
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(39, 211, 194, .55);
  box-shadow: 0 32px 78px rgba(7, 19, 21, .24);
}

.fleet-card:hover::after {
  transform: translateX(0);
}

.fleet-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dce8e6;
}

.fleet-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(7, 19, 21, .45), transparent);
}

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

.fleet-card-wide .fleet-media img {
  object-position: center 56%;
}

.fleet-card:not(.fleet-card-wide) .fleet-media {
  aspect-ratio: 3 / 4;
}

.fleet-card:not(.fleet-card-wide) .fleet-media img {
  object-position: 64% center;
}

.fleet-card:hover .fleet-media img {
  transform: scale(1.045) translateX(5px);
  filter: saturate(1.06) contrast(1.03);
}

.fleet-card figcaption {
  min-height: 94px;
  padding: 22px 24px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  color: #f2f7f6;
}

.fleet-card figcaption strong {
  color: #ffc43d;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}

.fleet-card figcaption span {
  justify-self: end;
  max-width: 34ch;
  color: #a8c0bd;
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

@media (max-width: 900px) {
  .fleet-heading,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-heading {
    gap: 26px;
  }

  .fleet-grid {
    gap: 18px;
  }

  .fleet-media {
    aspect-ratio: 16 / 10;
  }

  .fleet-card:not(.fleet-card-wide) .fleet-media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 700px) {
  .fleet-gallery {
    padding-block: 86px;
  }

  .fleet-heading {
    padding-bottom: 28px;
  }

  .fleet-heading h2 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: .94;
  }

  .fleet-heading > p {
    font-size: 14px;
  }

  .fleet-card {
    border-radius: 18px;
  }

  .fleet-media {
    aspect-ratio: 4 / 3;
  }

  .fleet-card:not(.fleet-card-wide) .fleet-media {
    aspect-ratio: 4 / 3;
  }

  .fleet-card figcaption {
    min-height: auto;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .fleet-card figcaption span {
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fleet-card,
  .fleet-card::after,
  .fleet-media img {
    transition: none;
  }
}

/* V5 sadeleştirme: çizgisiz hero ve eşit fotoğraf şeridi */
.hero-wash::before,
.hero-wash::after,
.hero-visual::before,
.hero-copy h1 em::after {
  content: none;
}

.hero-visual {
  padding-bottom: 0;
}

.photo-frame {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, .34);
}

.photo-caption span {
  padding: 9px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 19, 21, .76);
  backdrop-filter: blur(10px);
}

.photo-caption strong {
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(7, 19, 21, .64);
  backdrop-filter: blur(10px);
}

.district-rail {
  min-height: auto;
  margin-top: 28px;
  padding: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  background: transparent;
}

.district-rail span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(99, 230, 220, .14);
  border-radius: 999px;
  background: rgba(14, 34, 37, .72);
  text-align: center;
  line-height: 1.15;
}

.fleet-gallery {
  background: #f5f8f7;
}

.fleet-gallery::before,
.fleet-card::after {
  content: none;
}

.fleet-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  padding-bottom: 0;
  border: 0;
}

.fleet-heading h2 {
  max-width: 700px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: .94;
}

.fleet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.fleet-card,
.fleet-card:hover {
  margin: 0;
  border: 1px solid rgba(7, 19, 21, .12);
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 22px 54px rgba(7, 19, 21, .13);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(7, 19, 21, .18);
}

.fleet-media,
.fleet-card:not(.fleet-card-wide) .fleet-media {
  aspect-ratio: 3 / 2;
}

.fleet-card:not(.fleet-card-wide) .fleet-media img {
  object-position: center;
}

.fleet-card figcaption {
  display: none;
}

.fleet-card figcaption strong {
  color: #f2f7f6;
  font-size: 17px;
}

.fleet-card figcaption span {
  display: none;
}

@media (max-width: 900px) {
  .district-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .district-rail span:last-child {
    grid-column: auto;
  }

  .fleet-heading,
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .photo-frame {
    border-radius: 14px;
  }

  .photo-caption strong {
    display: none;
  }

  .district-rail {
    width: min(calc(100% - 28px), var(--container));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    padding-bottom: 18px;
  }

  .district-rail span:last-child {
    grid-column: 1 / -1;
  }

  .fleet-heading h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .fleet-grid {
    gap: 16px;
    margin-top: 28px;
  }

  .fleet-card,
  .fleet-card:hover {
    border-radius: 15px;
  }

  .fleet-card figcaption {
    display: none;
  }

  .fleet-card figcaption strong {
    font-size: 15px;
  }
}

/* V6 açık kurumsal kimlik */
html {
  color-scheme: light;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 5%, rgba(38, 141, 157, .08), transparent 27%),
    var(--paper);
}

::selection {
  color: var(--ink);
  background: var(--mist-deep);
}

:focus-visible {
  outline-color: var(--sea-deep);
  box-shadow: 0 0 0 2px #fff;
}

.site-header,
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 250, 249, .9);
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(11, 37, 56, .07);
}

.brand-logo {
  width: 224px;
}

.desktop-nav a {
  color: var(--ink-soft);
}

.header-call,
.header-whatsapp {
  color: var(--ink);
  border-color: var(--line-strong);
  background: #fff;
}

.header-call {
  border-color: var(--sun);
  background: #fff8e9;
}

.header-whatsapp {
  color: #fff;
  border-color: var(--sea-deep);
  background: var(--sea-deep);
}

.header-call:hover,
.header-whatsapp:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 17%, rgba(118, 201, 207, .22), transparent 31%),
    linear-gradient(118deg, #fff 0%, #f7faf9 48%, #eaf5f4 100%);
}

.hero-copy h1 em,
.section-heading h2 em,
.services-copy h2 em,
.faq-intro h2 em,
.contact-copy h2 em,
.article-intro h2 em {
  color: var(--sea-deep);
}

.hero-copy > p,
.hero-note,
.route-intro p,
.areas-head > p {
  color: var(--ink-soft);
}

.button-primary {
  color: var(--ink);
  border-color: var(--sun);
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(220, 144, 31, .18);
}

.button-primary:hover {
  color: var(--ink);
  border-color: var(--sun-soft);
  background: var(--sun-soft);
  box-shadow: 0 16px 34px rgba(220, 144, 31, .22);
}

.button-secondary {
  color: var(--sea-deep);
  border-color: var(--sea);
  background: #fff;
}

.button-secondary:hover {
  color: #fff;
  border-color: var(--sea-deep);
  background: var(--sea-deep);
}

.photo-frame {
  background: var(--mist-deep);
  box-shadow: 0 24px 62px rgba(11, 37, 56, .16);
}

.photo-frame::after,
.photo-caption {
  content: none;
  display: none;
}

.district-rail {
  background: transparent;
}

.district-rail span {
  color: var(--ink-soft);
  border-color: rgba(38, 141, 157, .2);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 7px 18px rgba(11, 37, 56, .04);
}

.route-story,
.areas,
.faq,
.article-section {
  color: var(--ink);
  background: var(--paper-strong);
}

.step,
.step:nth-child(2),
.step-accent {
  color: var(--ink);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fff, #edf7f6);
  box-shadow: 0 16px 38px rgba(24, 78, 88, .09);
}

.step-accent {
  border-color: rgba(243, 173, 63, .58);
  background: #fffaf0;
}

.step > span,
.step-accent > span {
  color: var(--sea-deep);
}

.step p,
.step-accent p {
  color: var(--ink-soft);
}

.step:hover {
  border-color: var(--sea-light);
  box-shadow: 0 22px 46px rgba(24, 78, 88, .13);
}

.network-stop > span {
  border-color: var(--ink);
  background: var(--sea);
}

.network-stop-d > span {
  border-color: var(--ink);
  background: var(--sun);
}

.services {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 15%, rgba(118, 201, 207, .13), transparent 25%),
    var(--mist);
}

.services::after {
  border-color: rgba(38, 141, 157, .14);
  box-shadow: 0 0 0 52px rgba(255, 255, 255, .24), 0 0 0 105px rgba(38, 141, 157, .04);
}

.service-row:hover,
.area-list > div:hover {
  background: rgba(118, 201, 207, .13);
}

.area-board {
  background: #fff;
  box-shadow: 0 24px 70px rgba(24, 78, 88, .11);
}

.area-map {
  background:
    linear-gradient(rgba(38, 141, 157, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 141, 157, .06) 1px, transparent 1px),
    linear-gradient(160deg, #e9f6f5 0%, #f7faf9 64%);
  background-size: 54px 54px, 54px 54px, auto;
}

.map-label {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 22px rgba(11, 37, 56, .08);
}

.faq-item button[aria-expanded="true"] i {
  border-color: var(--ink);
  background: var(--sun);
}

.article-toggle {
  color: var(--ink);
  border-color: var(--sun);
  background: var(--sun);
}

.fleet-gallery {
  color: var(--ink);
  background: #f4f9f8;
}

.fleet-heading h2 {
  color: var(--ink);
}

.fleet-heading h2 em,
.fleet-kicker {
  color: var(--sea-deep);
}

.fleet-heading > p {
  color: var(--ink-soft);
}

.fleet-card,
.fleet-card:hover {
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 20px 48px rgba(11, 37, 56, .1);
}

.fleet-media::after {
  content: none;
}

.contact {
  color: var(--ink);
  background: linear-gradient(to bottom, var(--paper) 50%, var(--mist) 50%);
}

.contact-panel {
  background:
    linear-gradient(rgba(38, 141, 157, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 141, 157, .045) 1px, transparent 1px),
    linear-gradient(145deg, #fff, #edf7f6);
  background-size: 52px 52px, 52px 52px, auto;
  box-shadow: 0 24px 70px rgba(24, 78, 88, .12);
}

.contact-phone {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
}

.contact-whatsapp {
  color: #fff;
  border-color: var(--sea-deep);
  background: var(--sea-deep);
}

.contact-whatsapp small {
  color: rgba(255, 255, 255, .76);
}

.site-footer {
  color: var(--ink);
  background: #eaf5f4;
}

.footer-main p,
.footer-bottom {
  color: var(--ink-soft);
}

@media (max-width: 1070px) {
  .menu-toggle {
    border-color: var(--line-strong);
    background: #fff;
  }

  .mobile-nav {
    color: var(--ink);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 45px rgba(11, 37, 56, .12);
  }
}

@media (max-width: 700px) {
  .brand-logo {
    width: 190px;
  }

  .mobile-actions {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -10px 30px rgba(11, 37, 56, .1);
  }

  .mobile-actions a {
    color: var(--ink);
    background: var(--sun);
  }

  .mobile-actions a:last-child {
    color: #fff;
    background: var(--sea-deep);
  }
}

/* Hero altı bölge etiketleri — keskin ve yönlendirici */
.district-rail a {
  min-width: 0;
  display: grid;
  color: inherit;
}

.district-rail a span {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.district-rail a:focus-visible {
  outline: 2px solid var(--sea-deep);
  outline-offset: 2px;
  box-shadow: none;
}

.district-rail a:focus-visible span {
  color: var(--ink);
  border-color: var(--sea-deep);
  background: var(--sea-light);
  transform: translateY(-2px);
}

.district-rail a:active span {
  color: var(--ink);
  border-color: var(--amber-strong);
  background: var(--sun-soft);
  transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
  .district-rail a:hover span {
    color: var(--ink);
    border-color: var(--sea-deep);
    background: var(--sea-light);
    transform: translateY(-2px);
  }
}

@media (max-width: 700px) {
  .district-rail a:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .district-rail a span {
    transition: none;
  }
}

/* Tipografik marka ve Fatih ile ortak header ritmi */
:root {
  --header-height: 84px;
}

.brand.brand-wordmark {
  min-width: 166px;
  display: inline-grid;
  align-content: center;
  align-items: start;
  gap: 5px;
  line-height: 1;
  text-decoration: none;
}

.brand-wordmark .brand-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: .78;
  text-transform: uppercase;
}

.brand-wordmark .brand-service {
  color: var(--sea-deep);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
}

.header-inner {
  gap: 28px;
}

.desktop-nav {
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
  padding: 31px 0 27px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  right: 0;
  bottom: 20px;
  left: 0;
  width: auto;
  height: 3px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand-footer.brand-wordmark {
  width: max-content;
}

@media (max-width: 1180px) and (min-width: 1071px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 10px;
  }
}

@media (max-width: 1070px) {
  :root {
    --header-height: 74px;
  }
}

@media (max-width: 700px) {
  .brand.brand-wordmark {
    min-width: 150px;
    gap: 4px;
  }

  .brand-wordmark .brand-name {
    font-size: 31px;
  }

  .brand-wordmark .brand-service {
    font-size: 9px;
    letter-spacing: .22em;
  }
}

/* Hero araç sliderı — başlıkla hizalı ve keskin çerçeveli */
.photo-frame.hero-slider {
  position: relative;
  border-radius: 0;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 700ms ease, transform 900ms ease;
}

.hero-slider .hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slider-controls {
  display: none;
}

.js .hero-slider-controls {
  position: absolute;
  z-index: 3;
  right: 8px;
  bottom: 5px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-slider-dot {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.hero-slider-dot::before {
  content: "";
  width: 32px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 0;
  background: rgba(7, 19, 21, .58);
  box-shadow: 0 2px 8px rgba(7, 19, 21, .18);
  transition: width 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-slider-dot.is-active::before {
  width: 36px;
  border-color: var(--sun);
  background: var(--sun);
}

.hero-slider-dot:focus-visible {
  outline: 2px solid var(--sea-deep);
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px #fff;
}

@media (min-width: 1071px) {
  .hero-grid {
    align-items: start;
  }

  .hero-visual {
    align-self: start;
    margin-top: 42px;
  }
}

@media (max-width: 700px) {
  .photo-frame.hero-slider {
    border-radius: 0;
  }

  .js .hero-slider-controls {
    right: 4px;
    top: 3px;
    bottom: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider .hero-slide,
  .hero-slider-dot::before {
    transition: none;
    transform: none;
  }
}
