/* ============ Ulaşım sayfası ============ */
.ul-page { background: #ffffff; }/* ---- HERO ---- */
/* The standardized hero rule (styles.css) forces .crumbs to
   position:absolute !important (top:18px). The ulasim hero is a simple
   top-aligned stack, so the absolute crumbs landed on top of the h1.
   Restore normal flow so crumbs -> hero-grid stack cleanly. Loaded after
   styles.css, so this !important wins the source-order tiebreak. */

/* Stand-alone banner row that sits between the hero and the steps.
 * (Was previously absolute-positioned to overlap the hero bottom.)
 * Stays in normal document flow so the hero closes cleanly. */
.ul-stat-banner-row {
  background: #ffffff;
  padding: 36px 0 28px;
}
.ul-stat-banner {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  background: var(--u-yellow); color: var(--u-black);
  border: 2px solid var(--u-black); border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 10px 0 var(--u-fuchsia);
  transform: rotate(-0.4deg);
}
.ul-stat-banner .lbl {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--u-black); color: var(--u-yellow);
  padding: 8px 14px; border-radius: 999px;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.22em; white-space: nowrap;
}
.ul-stat-banner .lbl .pulse { width: 8px; height: 8px; background: var(--u-fuchsia); border-radius: 50%; animation: pulse 1.5s infinite; }
.ul-stat-banner .stat-txt {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 19px; line-height: 1.25; letter-spacing: -0.005em;
  color: var(--u-black);
}
.ul-stat-banner .stat-txt strong { color: var(--u-fuchsia); }
.ul-stat-banner .meta-chip {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.18em; color: var(--u-black);
  background: #fff; border: 2px solid var(--u-black);
  padding: 7px 12px; border-radius: 999px; white-space: nowrap;
}
@keyframes ulFall {
  0% { transform: translateY(-30px) translateX(0); }
  100% { transform: translateY(700px) translateX(60px); }
}

/* ============ STEPS ============ */
.ul-steps { background: #ffffff; }

.t-step {
  position: relative; overflow: hidden;
  border-bottom: 2px solid #0A1622;
  background: linear-gradient(180deg, #B7E1F2 0%, #DCEEF6 38%, #EEF6FA 60%, #ffffff 100%);
}
.t-step:nth-child(even) { background: linear-gradient(180deg, #D6ECF6 0%, #E4F1F8 40%, #F4F9FC 65%, #ffffff 100%); }

.t-step .wrap {
  position: relative; z-index: 5;
  padding: 80px 40px 200px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.t-step.reverse .wrap { direction: rtl; }
.t-step.reverse .wrap > * { direction: ltr; }

.step-text { color: var(--u-black); }
.step-text .num-block {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.step-text .num-block .num {
  background: var(--u-black); color: var(--u-yellow);
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 22px; letter-spacing: -0.02em;
  padding: 10px 16px; border-radius: 14px;
  border: 2px solid var(--u-black);
}
.step-text .num-block .tag {
  background: var(--u-yellow); color: var(--u-black);
  border: 2px solid var(--u-black);
  padding: 7px 14px; border-radius: 999px;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.step-text h2 {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 64px; line-height: 0.92; color: var(--u-black);
  letter-spacing: -0.025em; text-transform: uppercase;
  max-width: 560px;
}
.step-text h2 em { color: var(--u-fuchsia); font-style: italic; }
.step-text .desc {
  font-family: 'Gotham'; font-size: 16px; color: var(--u-slate);
  line-height: 1.62; margin: 18px 0 0; max-width: 520px;
}
.step-text .desc strong { color: var(--u-black); }
.step-text .info-list {
  margin: 22px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.step-text .info-list li {
  display: grid; grid-template-columns: 22px 1fr;
  gap: 12px; align-items: start;
  font-family: 'Gotham'; font-size: 14px; color: var(--u-slate); line-height: 1.5;
}
.step-text .info-list li::before {
  content: ''; width: 14px; height: 14px; background: var(--u-yellow);
  border: 2px solid var(--u-black); border-radius: 4px; margin-top: 3px;
}
.step-text .info-list li strong { color: var(--u-black); }

.step-actions {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.step-actions .step-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--u-black); color: var(--u-yellow);
  border: 2px solid var(--u-black); padding: 13px 20px;
  border-radius: 12px; cursor: pointer;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 12px; letter-spacing: 0.16em; text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.step-actions .step-btn:hover { transform: translateY(-2px); background: var(--u-fuchsia); color: #fff; }
.step-actions .step-btn.wa { background: #25D366; color: #fff; border-color: var(--u-black); }
.step-actions .step-btn.wa:hover { background: #128C7E; }
.step-actions .step-btn.yel { background: var(--u-yellow); color: var(--u-black); }
.step-actions .step-btn.yel:hover { background: var(--u-fuchsia); color: #fff; }
/* 03.06 P2-9: Feribot butonları — İDO mavi, BUDO yeşil. */
.step-actions .step-btn.ido { background: #1a73e8; color: #fff; border-color: #1a73e8; }
.step-actions .step-btn.ido:hover { background: #1558b0; color: #fff; }
.step-actions .step-btn.budo { background: #1f8a3b; color: #fff; border-color: #1f8a3b; }
.step-actions .step-btn.budo:hover { background: #166a2c; color: #fff; }

/* ---- Partner logo strip — V1 ulasim.html'den birebir (Radikal/Dama/Plaza) ---- */
.partner-row {
  margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.partner-card {
  background: #fff; border: 2px solid var(--u-black);
  border-radius: 14px; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 5px 0 var(--u-black);
  transition: transform 160ms ease;
}
.partner-card:hover { transform: translate(-2px, -2px); box-shadow: 0 7px 0 var(--u-black); }
.partner-card .plogo {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 20px; letter-spacing: -0.01em; color: var(--u-black);
  display: inline-flex; align-items: center; gap: 8px;
}
.partner-card .plogo .badge {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--u-fuchsia); color: #fff;
  border: 2px solid var(--u-black);
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic; font-size: 14px;
}
.partner-card.dama .plogo .badge { background: var(--u-teal); }
.partner-card.plaza .plogo .badge { background: var(--u-black); color: var(--u-yellow); }
.partner-card .ptag {
  font-family: 'Mark Pro'; font-weight: 500; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--u-muted);
}
.partner-card .wa-btn {
  /* margin-top:auto → buton kartın altına yapışır; grid stretch ile kartlar eşit
     yükseklikte olduğundan başlık 1/2 satır olsa da WhatsApp butonları aynı
     hizada (Burak 2026-06-14). */
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: #25D366; color: #fff; border: 2px solid var(--u-black);
  padding: 8px 12px; border-radius: 999px;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.14em; text-decoration: none;
  transition: background 160ms ease;
}
.partner-card .wa-btn:hover { background: #128C7E; }
.partner-card .wa-btn svg { width: 13px; height: 13px; }

/* Step scene */
.step-scene {
  position: relative; height: 460px;
  border-radius: 22px;
  overflow: hidden; isolation: isolate;
  border: 2px solid var(--u-black);
  background: linear-gradient(180deg, #BFE4F4 0%, #DDEEF6 100%);
  box-shadow: 0 12px 0 var(--u-black);
}
.scene-cable  { background: url('/assets/img/ulasim/scene-cable.jpg')  center/cover no-repeat; }
.scene-car    { background: url('/assets/img/ulasim/scene-car.jpg')    center/cover no-repeat; }
.scene-bus    { background: url('/assets/img/ulasim/scene-bus.png')    center/cover no-repeat; }
.scene-ferry  { background: url('/assets/img/ulasim/scene-ferry.jpg')  center/cover no-repeat; }
.scene-plane  { background: url('/assets/img/ulasim/scene-plane.png')  center/cover no-repeat; }
.scene-tram   { background: url('/assets/img/ulasim/scene-tram.jpg')   center/cover no-repeat; }
.scene-vip    { background: url('/assets/img/ulasim/scene-vip.png')    center/cover no-repeat; }

.scene-label {
  position: absolute; top: 18px; left: 20px; z-index: 5;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,22,34,0.85); color: #fff;
  backdrop-filter: blur(6px);
  padding: 7px 14px; border-radius: 999px;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.scene-label .d { width: 7px; height: 7px; background: var(--u-yellow); border-radius: 50%; }

.scene-chip {
  position: absolute; top: 18px; right: 20px; z-index: 5;
  background: rgba(255,255,255,0.95); color: var(--u-black);
  border: 2px solid var(--u-black);
  padding: 7px 12px; border-radius: 999px;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.16em;
}

/* Traffic / Yandex map block — visually attached to the 02 "Özel
   Araç" step above. Remove the step-bottom border so the two read
   as one block; keep a single border-bottom on .t-traffic to close
   the section before the next step. */
.t-step[data-step="car"] { border-bottom: 0; }
.t-traffic {
  background: linear-gradient(180deg, #E4F1F8 0%, #F4F9FC 50%, #ffffff 100%);
  padding: 32px 0 80px;
  border-bottom: 2px solid #0A1622;
}
/* "Yol durumunu anlık görün" başlık + açıklama + Yandex Maps CTA.
   Section'un tepesinde tam genişlikte; harita aşağıda kendi wrap'inde. */
.t-traffic .ul-traffic-head {
  max-width: 1200px; margin: 0 auto 32px; padding: 0 24px;
  text-align: center;
  /* 03.06 P2-9: "Yol Durumu" butonu buraya scroll eder — sticky nav payı. */
  scroll-margin-top: 96px;
}
.t-traffic .ul-traffic-head h2 { scroll-margin-top: 96px; }
.t-traffic .ul-traffic-head h2 {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 56px; line-height: 0.95; color: var(--u-black);
  letter-spacing: -0.025em; text-transform: uppercase;
  margin: 0 0 16px;
}
.t-traffic .ul-traffic-head h2 em {
  color: var(--u-fuchsia); font-style: italic;
}
.t-traffic .ul-traffic-head p {
  max-width: 720px; margin: 0 auto 18px;
  font-family: 'Gotham'; font-size: 16px; line-height: 1.55;
  color: var(--u-slate);
}
.t-traffic .ul-traffic-head .open-yandex {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 20px; border-radius: 10px;
  background: var(--u-black); color: var(--u-yellow);
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--u-black);
  box-shadow: 0 4px 0 var(--u-yellow);
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.t-traffic .ul-traffic-head .open-yandex:hover {
  transform: translate(-1px, -1px);
  box-shadow: 0 6px 0 var(--u-yellow);
}
/* Map host container — Yandex constructor script DOM'a iframe inject
   eder; min-height server-render layout shift'ini engeller. */
.t-traffic .ul-yandex-traffic-map {
  width: 100%; min-height: 720px;
  border: 2px solid var(--u-black);
  border-radius: 18px; box-shadow: 0 8px 0 var(--u-black);
  background: #f1f5f9;
  overflow: hidden;
}
.t-traffic .ul-yandex-traffic-map iframe {
  width: 100% !important;
  display: block;
}
.t-traffic .wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

/* ---- CTA / closing ---- */
.ul-close {
  background: var(--u-black) url('/assets/img/ulasim.jpg') center center / cover no-repeat;
  color: #fff;
  padding: 90px 0 100px;
  border-top: 3px solid var(--u-yellow);
  text-align: center;
  position: relative;
}
.ul-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1, 21, 40, 0.72);
  pointer-events: none;
}
.ul-close .wrap { position: relative; z-index: 1; }
.ul-close h2 {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 72px; line-height: 0.92; color: #fff;
  letter-spacing: -0.025em; text-transform: uppercase;
  max-width: 880px; margin: 0 auto;
}
.ul-close h2 em { color: var(--u-yellow); font-style: italic; }
.ul-close p { color: rgba(255,255,255,0.7); margin: 20px auto 30px; max-width: 540px; font-size: 16px; }
.ul-close .ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.ul-close .ctas a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 22px; border-radius: 12px; border: 2px solid #fff;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 13px; letter-spacing: 0.14em; text-decoration: none;
}
.ul-close .ctas a.pri { background: var(--u-yellow); color: var(--u-black); border-color: var(--u-yellow); }
.ul-close .ctas a.sec { background: transparent; color: #fff; }
.ul-close .ctas a.sec:hover { background: #fff; color: var(--u-black); }

@media (max-width: 768px) {
  .ul-stat-banner {
    position: static; transform: none;
    grid-template-columns: 1fr; gap: 10px;
    margin-top: 28px;
  }
  .t-step .wrap {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    padding: 48px 20px 56px; gap: 28px;
  }
  .t-step.reverse .wrap { direction: ltr; }
  .step-text h2 { font-size: 36px; max-width: 100%; }
  .step-scene { height: 320px; }
  .t-traffic { padding-top: 24px; }
  .t-traffic .ul-traffic-head h2 { font-size: 36px; }
  .t-traffic .ul-traffic-head p { font-size: 14px; }
  .t-traffic .ul-yandex-traffic-map { min-height: 480px; }
  .ul-close { padding: 56px 0; }
  .ul-close h2 { font-size: 40px; }
}

@media (max-width: 480px) {
  .step-text h2 { font-size: 28px; }
  .step-scene { height: 240px; }
}
