:root {
  --dok-bg: #0b0d12;
  --dok-card: #171b24;
  --dok-gold: #d4a853;
  --dok-text: #f4f6fb;
  --dok-muted: #b0b8c8;
  --dok-green: #25d366;
  --dok-red: #e53935;
  --dok-nav-h: 56px;
  --dok-footer-h: 74px;
  --dok-font: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.dok-body {
  margin: 0;
  font-family: var(--dok-font);
  background: var(--dok-bg);
  color: var(--dok-text);
  overflow-x: hidden;
  padding-bottom: var(--dok-footer-h);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.dok-logo-img { object-fit: contain; }
.dok-logo-img--nav { width: 44px; height: 44px; }
.dok-logo-img--intro { width: 100%; height: 100%; object-fit: cover; }

/* --- Intro --- */
.dok-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #06080c;
  animation: dokIntroOut .65s ease 2.75s forwards;
}
.dok-intro.is-done {
  animation: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}
@keyframes dokIntroOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dok-intro { animation-duration: .2s; animation-delay: .4s; }
  .dok-intro__spinner { animation-duration: 1.2s; }
}
.dok-intro__frame {
  width: min(200px, 52vw);
  aspect-ratio: 1;
  border: 3px solid var(--dok-gold);
  border-radius: 4px;
  overflow: hidden;
  animation: dokFrameIn 1.2s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes dokFrameIn {
  from { transform: scale(.15); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.dok-intro__quote {
  margin: 0;
  max-width: min(92vw, 400px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  opacity: 0;
  animation: dokFadeIn .8s .7s ease forwards;
}
.dok-intro__tagline {
  margin: 0;
  font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}
.dok-intro__tagline em { font-style: italic; }
.dok-intro__site {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--dok-gold);
}
.dok-intro__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  margin-top: .15rem;
  opacity: 0;
  animation: dokFadeIn .6s 1.1s ease forwards;
}
.dok-intro__spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(212,168,83,.22);
  border-top-color: var(--dok-gold);
  border-radius: 50%;
  animation: dokIntroSpin .75s linear infinite;
}
.dok-intro__loading-text {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(212,168,83,.88);
}
@keyframes dokIntroSpin {
  to { transform: rotate(360deg); }
}
@keyframes dokFadeIn { to { opacity: 1; } }

/* --- Nav --- */
.dok-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--dok-nav-h);
  background: rgba(6,8,12,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dok-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 .65rem;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: .45rem;
}
.dok-nav__actions {
  display: flex;
  align-items: center;
  gap: .35rem;
  justify-self: end;
}
.dok-lang {
  position: relative;
}
.dok-lang__toggle {
  display: flex;
  align-items: center;
  gap: .28rem;
  padding: .28rem .42rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: #dce2ec;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.dok-lang__toggle:hover,
.dok-lang.is-open .dok-lang__toggle {
  border-color: rgba(212,168,83,.45);
  background: rgba(212,168,83,.1);
}
.dok-lang__flag {
  font-size: 1.05rem;
  line-height: 1;
  display: block;
}
.dok-lang__caret {
  font-size: .5rem;
  opacity: .75;
  transition: transform .2s;
}
.dok-lang.is-open .dok-lang__caret {
  transform: rotate(180deg);
}
.dok-lang__menu {
  position: absolute;
  top: calc(100% + .35rem);
  right: 0;
  min-width: 148px;
  padding: .28rem;
  border-radius: 8px;
  background: #141820;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  z-index: 220;
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.dok-lang__menu[hidden] { display: none; }
.dok-lang__option {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  padding: .42rem .55rem;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: #c8d0dc;
  font-size: .74rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.dok-lang__option:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.dok-lang__option.is-active {
  background: rgba(212,168,83,.18);
  color: var(--dok-gold);
}
html[dir="rtl"] .dok-lang__menu {
  right: auto;
  left: 0;
}
html[dir="rtl"] .dok-lang__option {
  text-align: right;
  flex-direction: row-reverse;
}
.dok-nav__link {
  justify-self: end;
  font-size: .72rem;
  font-weight: 700;
  color: #dce2ec;
  padding: .38rem .6rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12);
  transition: color .2s, border-color .2s, background .2s;
}
.dok-nav__link:hover {
  color: var(--dok-gold);
  border-color: rgba(212,168,83,.45);
  background: rgba(212,168,83,.08);
}
.dok-nav__logo { display: flex; align-items: center; }
.dok-brand { justify-self: center; text-align: center; }
.dok-brand__name {
  font-size: clamp(.72rem, 2.8vw, 1rem);
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  white-space: nowrap;
}

/* --- Hero (compact) --- */
.dok-hero {
  position: relative;
  margin-top: var(--dok-nav-h);
  min-height: calc(100svh - var(--dok-nav-h) - var(--dok-footer-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #06080c;
}
.dok-bg-strips {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.dok-bg-strip {
  position: absolute;
  left: 0;
  right: 0;
  height: 26%;
  overflow: hidden;
  background: #040508;
}
.dok-bg-strip--top { top: 0; }
.dok-bg-strip--bottom { bottom: 0; }
.dok-bg-strip__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,.28);
  pointer-events: none;
}
.dok-bg-strip__track {
  display: flex;
  gap: .55rem;
  width: max-content;
  padding: .4rem 0;
  animation: dokStripMarquee 38s linear infinite;
}
.dok-bg-strip__track--reverse {
  animation-direction: reverse;
  animation-duration: 46s;
}
@keyframes dokStripMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--dok-strip-shift, 50%)), 0, 0); }
}
.dok-bg-strip__item {
  flex: 0 0 148px;
  height: 74px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  opacity: .95;
  filter: saturate(.95) brightness(.88);
}
.dok-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 90% 75% at 50% 50%, rgba(0,0,0,.28) 0%, rgba(0,0,0,.62) 100%);
}
.dok-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 420px;
  padding: .65rem 1rem .75rem;
  text-align: center;
}
.dok-hero__panel {
  background: rgba(8,10,14,.82);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .85rem .75rem .75rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}

.dok-hero__type-bar {
  display: inline-block;
  margin: 0 auto .4rem;
  padding: .45rem .65rem;
  background: rgba(0,0,0,.82);
  border-radius: 4px;
  border-left: 3px solid var(--dok-gold);
}
.dok-hero__type {
  display: flex;
  flex-direction: column;
  gap: .08rem;
  margin: 0;
  font-size: clamp(1.05rem, 4.5vw, 1.4rem);
  font-weight: 800;
  line-height: 1.25;
}
.dok-type-line { color: #fff; white-space: nowrap; }
.dok-type-line--dynamic { color: var(--dok-gold); min-height: 1.2em; }
.dok-type-cursor {
  display: inline-block;
  width: 2px;
  height: .9em;
  margin-left: 2px;
  background: var(--dok-gold);
  vertical-align: text-bottom;
  animation: dokBlink .85s step-end infinite;
}
@keyframes dokBlink { 50% { opacity: 0; } }

.dok-hero__tag {
  display: inline-block;
  margin: 0 auto .55rem;
  padding: .45rem .7rem;
  font-size: .8rem;
  font-weight: 500;
  color: #dce2ec;
  line-height: 1.4;
  background: rgba(0,0,0,.82);
  border-radius: 4px;
}
.dok-hero__tag strong { color: #fff; font-weight: 700; }

.dok-hero__services-title {
  margin: 0 0 .35rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dok-gold);
}
.dok-service-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin: 0 0 .5rem;
  color: var(--dok-gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  animation: dokServiceHintPulse 1.5s ease-in-out infinite;
}
.dok-service-hint.is-hidden { display: none; }
.dok-service-hint i {
  font-size: .68rem;
  animation: dokCtaArrow 1.2s ease-in-out infinite;
}
@keyframes dokServiceHintPulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

.dok-service-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
.dok-service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 78px;
  padding: .55rem .45rem;
  background: #141922;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  cursor: pointer;
  color: inherit;
  transition: border-color .2s, background .2s, transform .15s;
}
.dok-service-icon--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  min-height: 56px;
  padding: .6rem .85rem;
}
.dok-service-icon--wide span {
  font-size: .88rem;
  font-weight: 800;
  color: #f4f6fb;
}
.dok-service-icon--wide i { font-size: 1.15rem; color: var(--dok-gold); }
.dok-service-icon:active { transform: scale(.98); }
.dok-service-icon:hover {
  border-color: rgba(212,168,83,.4);
  background: #1a2030;
}
.dok-service-icon i { font-size: 1.2rem; color: var(--dok-gold); }
.dok-service-icon span {
  font-size: .76rem;
  font-weight: 800;
  color: #f0f3f8;
  line-height: 1.3;
  text-align: center;
}

.dok-gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--dok-gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .2s, transform .2s;
}
.dok-gallery-link i {
  font-size: .72rem;
  animation: dokCtaArrow 1.4s ease-in-out infinite;
}
.dok-gallery-link:hover { color: #f0d48a; transform: translateY(1px); }
@keyframes dokCtaArrow {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* Service modal */
.dok-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}
.dok-modal.is-open { display: flex; }
.dok-modal__panel {
  position: relative;
  width: min(100%, 360px);
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(160deg, #1a1f2a 0%, #12151c 100%);
  border: 1px solid rgba(212,168,83,.35);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  text-align: center;
  animation: dokModalIn .28s ease;
}
@keyframes dokModalIn {
  from { opacity: 0; transform: scale(.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.dok-modal__close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.dok-modal__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto .75rem;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--dok-gold);
  background: rgba(212,168,83,.12);
  border-radius: 4px;
  border: 1px solid rgba(212,168,83,.25);
}
.dok-modal__title {
  margin: 0 0 .65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.dok-modal__text {
  margin: 0;
  font-size: .86rem;
  font-weight: 500;
  color: var(--dok-muted);
  line-height: 1.6;
}
.dok-modal__panel--action { padding-bottom: 1.1rem; }
.dok-modal__actions {
  display: grid;
  gap: .45rem;
  margin-top: 1rem;
}
.dok-modal__actions--dual {
  grid-template-columns: 1fr 1fr;
}
.dok-modal__actions .dok-btn {
  width: 100%;
  padding: .7rem .35rem;
  font-size: clamp(.68rem, 2.8vw, .8rem);
}

/* --- Sections --- */
.dok-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 0 1.25rem;
  scroll-margin-top: calc(var(--dok-nav-h) + 8px);
}
.dok-section--dark {
  max-width: none;
  background: #000;
  padding-left: 0;
  padding-right: 0;
}
.dok-section__head { text-align: center; padding: 0 1rem .6rem; }
.dok-section__eyebrow {
  color: var(--dok-gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dok-section__title {
  margin: .3rem 0 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.dok-gallery-marquee {
  overflow: hidden;
  width: 100%;
  min-height: 88px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.dok-gallery-track {
  display: flex;
  gap: .5rem;
  width: max-content;
  will-change: transform;
}
.dok-gallery-track.is-ready {
  animation: dokGalleryMarquee var(--dok-gallery-duration, 18s) linear infinite alternate;
  -webkit-animation: dokGalleryMarquee var(--dok-gallery-duration, 18s) linear infinite alternate;
}
.dok-gallery-marquee.is-paused .dok-gallery-track {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
@keyframes dokGalleryMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--dok-gallery-shift, 0px)), 0, 0); }
}
@-webkit-keyframes dokGalleryMarquee {
  from { -webkit-transform: translate3d(0, 0, 0); }
  to { -webkit-transform: translate3d(calc(-1 * var(--dok-gallery-shift, 0px)), 0, 0); }
}
.dok-gallery-item {
  flex: 0 0 150px;
  height: 88px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  flex-shrink: 0;
  background: #1a1f28;
  position: relative;
  z-index: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.dok-gallery-item img {
  width: 150px;
  height: 88px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Regions marquee — üç şerit */
.dok-regions-strips {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.dok-regions-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  padding: .25rem 0;
  pointer-events: none;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.dok-regions-marquee--other {
  padding: .45rem 0;
  border-radius: 6px;
  background: rgba(37,211,102,.06);
  border: 1px solid rgba(37,211,102,.18);
}
.dok-regions-track {
  display: flex;
  gap: .5rem;
  width: max-content;
  will-change: transform;
}
.dok-regions-track.is-ready.is-ltr {
  animation: dokRegionsLtr var(--dok-regions-duration, 32s) linear infinite alternate;
}
.dok-regions-track.is-ready.is-rtl {
  animation: dokRegionsRtl var(--dok-regions-duration, 32s) linear infinite alternate;
}
@keyframes dokRegionsLtr {
  from { transform: translate3d(calc(-1 * var(--dok-regions-shift, 0px)), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
@keyframes dokRegionsRtl {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--dok-regions-shift, 0px)), 0, 0); }
}
.dok-region-chip {
  flex: 0 0 auto;
  padding: .45rem .85rem;
  font-size: .78rem;
  font-weight: 700;
  color: #e8ecf2;
  background: var(--dok-card);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  white-space: nowrap;
}
.dok-region-chip--side {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  border-color: rgba(212,168,83,.45);
  background: rgba(212,168,83,.14);
  padding: .5rem 1rem;
}
.dok-region-chip--other {
  color: #ecfdf5;
  border-color: rgba(37,211,102,.55);
  background: rgba(37,211,102,.22);
  font-weight: 800;
}
.dok-region-chip--outcity {
  color: #d1fae5;
  border-color: rgba(52,211,153,.35);
  background: rgba(16,185,129,.14);
  font-weight: 700;
}
.dok-region-chip--city {
  color: var(--dok-gold);
  border-color: rgba(212,168,83,.35);
  background: rgba(212,168,83,.08);
}

.dok-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.dok-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .dok-reveal {
    opacity: 1;
    transform: none;
  }
}

.dok-about-text {
  padding: 0 1rem;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.dok-about-text p {
  margin: 0;
  color: var(--dok-muted);
  font-size: .86rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
.dok-about-text strong { color: #e2e8f0; font-weight: 700; }

.dok-reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  padding: .4rem 0;
}
.dok-reviews-track {
  display: flex;
  gap: .65rem;
  width: max-content;
  will-change: transform;
  animation: dokReviewsMarquee 45s linear infinite;
}
.dok-reviews-marquee.is-paused .dok-reviews-track { animation-play-state: paused; }
@keyframes dokReviewsMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.dok-review {
  flex: 0 0 250px;
  background: var(--dok-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: .8rem;
}
.dok-review__top { display: flex; justify-content: space-between; font-size: .78rem; margin-bottom: .25rem; }
.dok-review__name { font-weight: 700; }
.dok-review__meta { color: var(--dok-muted); font-size: .7rem; font-weight: 500; }
.dok-review__stars { color: var(--dok-gold); font-size: .72rem; margin-bottom: .2rem; }
.dok-review p { margin: 0; font-size: .78rem; font-weight: 500; color: #cfd6e3; line-height: 1.4; }

.dok-bottom {
  padding: 1.75rem 1rem 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.dok-bottom__quote {
  margin: 0 0 1rem;
  font-size: clamp(.9rem, 2.8vw, 1.1rem);
  font-weight: 600;
  color: #d8dee8;
  line-height: 1.5;
}
.dok-bottom__grid {
  display: grid;
  gap: .65rem;
  max-width: 520px;
  margin: 0 auto;
}
.dok-bottom__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  text-align: left;
  padding: .8rem 1rem;
  border-radius: 4px;
  background: var(--dok-card);
  border: 1px solid rgba(255,255,255,.06);
}
.dok-bottom__item--link { transition: border-color .2s, background .2s; }
.dok-bottom__item--link:hover {
  border-color: rgba(212,168,83,.35);
  background: rgba(212,168,83,.06);
}
.dok-bottom__item i { color: var(--dok-gold); margin-top: .15rem; font-size: 1.05rem; }
.dok-bottom__item strong {
  display: block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dok-gold);
  margin-bottom: .15rem;
}
.dok-bottom__phone {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #e2e8f0;
}
.dok-bottom__item span:not(.dok-bottom__phone) {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: #e2e8f0;
}
.dok-nav__link--vitrin {
  color: var(--dok-gold);
  font-weight: 700;
}
.dok-bottom__partners {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.dok-bottom__partners-title {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dok-muted);
}
.dok-bottom__partners-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem .85rem;
}
.dok-bottom__partners-links a {
  font-size: .78rem;
  font-weight: 600;
  color: #c9d4e8;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,83,.35);
}
.dok-bottom__partners-links a:hover { color: var(--dok-gold); }

.dok-bottom__note {
  display: block;
  margin-top: .2rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--dok-muted);
}

.dok-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .75rem 1.2rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: .88rem;
  border: none;
  cursor: pointer;
}
.dok-btn--call {
  background: linear-gradient(135deg, #ff5a4f, var(--dok-red));
  color: #fff;
}
.dok-btn--wa {
  background: linear-gradient(135deg, #2fe072, var(--dok-green));
  color: #06210f;
}
.dok-btn--sms {
  background: linear-gradient(135deg, #5b9cff, #2563eb);
  color: #fff;
}
.dok-btn--gold {
  background: linear-gradient(135deg, #e8c06a, var(--dok-gold));
  color: #1a1205;
}
.dok-btn--pulse { animation: dokBtnPulse 1.6s ease-in-out infinite; }
.dok-btn--pulse-delay { animation-delay: .8s; }
@keyframes dokBtnPulse {
  0%, 100% { transform: scale(1); opacity: 1; filter: brightness(1); box-shadow: 0 0 0 0 rgba(255,255,255,.25); }
  50% { transform: scale(1.06); opacity: .78; filter: brightness(1.2); box-shadow: 0 0 28px rgba(255,255,255,.35); }
}

.dok-footer-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  height: var(--dok-footer-h);
  background: rgba(5,7,10,.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: .45rem;
  padding: .55rem .65rem calc(.55rem + env(safe-area-inset-bottom));
}
.dok-footer-bar a,
.dok-footer-bar button {
  border-radius: 4px;
  font-size: clamp(.68rem, 2.9vw, .82rem);
  padding: .65rem .35rem;
  width: 100%;
  text-decoration: none;
}
.dok-footer-bar--dual {
  grid-template-columns: 1fr 1fr;
}

/* Konum gönder akışı */
.dok-locate {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
}
.dok-locate.is-open { display: flex; }
@media (min-width: 520px) {
  .dok-locate { align-items: center; padding: 1rem; }
}
.dok-locate__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 480px);
  height: min(88svh, 640px);
  max-height: min(88svh, 640px);
  overflow: hidden;
  padding: 1.35rem 1.15rem 1.15rem;
  background: linear-gradient(165deg, #1a1f2a 0%, #10141c 100%);
  border: 1px solid rgba(212,168,83,.32);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,.55);
  animation: dokLocateIn .32s ease;
}
@media (min-width: 520px) {
  .dok-locate__panel { border-radius: 10px; }
}
@keyframes dokLocateIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.dok-locate__close {
  position: absolute;
  top: .55rem;
  right: .55rem;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}
.dok-locate__progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .22rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.dok-locate__step-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .12rem;
  min-height: 42px;
  padding: .3rem .1rem;
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #8a939f;
  font-size: .52rem;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.dok-locate__step-tab:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.dok-locate__step-tab:not(:disabled):hover {
  border-color: rgba(212,168,83,.35);
}
.dok-locate__step-tab.is-active {
  color: var(--dok-gold);
  border-color: rgba(212,168,83,.45);
  background: rgba(212,168,83,.12);
}
.dok-locate__step-tab.is-done {
  color: #86efac;
  border-color: rgba(37,211,102,.35);
  background: rgba(37,211,102,.08);
}
.dok-locate__step-check {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dok-green);
  color: #06210f;
  font-size: .55rem;
  align-items: center;
  justify-content: center;
}
.dok-locate__step-tab.is-done .dok-locate__step-check { display: inline-flex; }
.dok-locate__step-tab.is-done .dok-locate__step-label { font-size: .54rem; }
.dok-locate__hint {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  margin-bottom: .75rem;
  padding: .55rem .65rem;
  border-radius: 6px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.28);
  color: #bbf7d0;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}
.dok-locate__hint i { color: var(--dok-green); margin-top: .1rem; }
.dok-locate__continue {
  width: 100%;
  margin-top: .75rem;
}
.dok-locate__continue:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.dok-locate__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .45rem;
}
.dok-locate__service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  min-height: 74px;
  padding: .5rem .4rem;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(0,0,0,.35);
  color: #e8ecf2;
  font-size: .7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.dok-locate__service i {
  font-size: 1.1rem;
  color: var(--dok-gold);
}
.dok-locate__service.is-selected {
  border-color: var(--dok-green);
  background: rgba(37,211,102,.1);
  box-shadow: 0 0 0 1px rgba(37,211,102,.35);
  color: #ecfdf5;
}
.dok-locate__summary {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .75rem;
}
.dok-locate__summary-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(212,168,83,.12);
  border: 1px solid rgba(212,168,83,.3);
  color: var(--dok-gold);
  font-size: .72rem;
  font-weight: 800;
}
.dok-locate__success-banner {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin-bottom: .85rem;
  padding: .65rem .75rem;
  border-radius: 8px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.32);
  color: #bbf7d0;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}
.dok-locate__success-banner i {
  color: var(--dok-green);
  font-size: 1.1rem;
  margin-top: .05rem;
  flex-shrink: 0;
}
.dok-locate__success-banner p { margin: 0; }
.dok-locate__accuracy {
  margin: 0 0 .85rem;
  padding: .45rem .65rem;
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #dce2ec;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}
.dok-locate__step1-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.dok-locate__note-label {
  display: block;
  margin: .85rem 0 .35rem;
  font-size: .78rem;
  font-weight: 800;
  color: #e2e8f0;
  text-align: left;
}
.dok-locate__note-label span {
  color: var(--dok-muted);
  font-weight: 600;
}
.dok-locate__note {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: .75rem;
  padding: .65rem .75rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: #f0f3f8;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  resize: none;
  min-height: 72px;
  max-height: 120px;
}
.dok-locate__note:focus {
  outline: none;
  border-color: rgba(212,168,83,.45);
}
.dok-btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: #e8ecf2;
}
.dok-locate__send-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .25rem;
}
.dok-locate__send-row .dok-locate__send {
  width: 100%;
  font-size: clamp(.68rem, 2.8vw, .78rem);
  padding: .72rem .4rem;
}
.dok-locate__step { display: none; }
.dok-locate__step.is-active {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.dok-locate__title {
  margin: 0 0 .45rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  padding-right: 1.5rem;
}
.dok-locate__text {
  margin: 0 0 .85rem;
  font-size: .84rem;
  font-weight: 500;
  color: var(--dok-muted);
  line-height: 1.55;
}
.dok-locate__spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto .85rem;
  border: 3px solid rgba(212,168,83,.2);
  border-top-color: var(--dok-gold);
  border-radius: 50%;
  animation: dokLocateSpin .75s linear infinite;
}
@keyframes dokLocateSpin { to { transform: rotate(360deg); } }
.dok-locate__vehicles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .45rem;
}
.dok-locate__vehicle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  min-height: 72px;
  padding: .55rem .4rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  background: rgba(0,0,0,.35);
  color: #e8ecf2;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.dok-locate__vehicle i {
  font-size: 1.15rem;
  color: var(--dok-gold);
}
.dok-locate__vehicle:active { transform: scale(.97); }
.dok-locate__vehicle.is-selected {
  border-color: var(--dok-green);
  background: rgba(37,211,102,.1);
  box-shadow: 0 0 0 1px rgba(37,211,102,.35);
}
.dok-locate__vehicle-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .75rem;
  padding: .4rem .65rem;
  border-radius: 999px;
  background: rgba(212,168,83,.14);
  border: 1px solid rgba(212,168,83,.35);
  color: var(--dok-gold);
  font-size: .78rem;
  font-weight: 800;
}
.dok-locate__address {
  margin: 0 0 .75rem;
  display: grid;
  gap: .45rem;
}
.dok-locate__address div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: .35rem;
  align-items: start;
  font-size: .8rem;
}
.dok-locate__address dt {
  margin: 0;
  color: var(--dok-gold);
  font-weight: 800;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.dok-locate__address dd {
  margin: 0;
  color: #e2e8f0;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
}
.dok-locate__map-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .85rem;
  font-size: .78rem;
  font-weight: 700;
  color: #93c5fd;
}
.dok-locate__map-link i { color: #60a5fa; }
.dok-locate__send {
  width: 100%;
  margin-top: .15rem;
}
.dok-locate__error-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto .75rem;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: #fca5a5;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.28);
  border-radius: 50%;
}
.dok-locate__retry {
  width: 100%;
  margin-bottom: .65rem;
}
.dok-locate__fallback {
  display: block;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--dok-gold);
}

.dok-scroll-fab {
  position: fixed;
  right: .65rem;
  bottom: calc(var(--dok-footer-h) + 10px);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.dok-scroll-fab button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.dok-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(0,0,0,.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.dok-lightbox.is-open { display: flex; }
.dok-lightbox__img { max-width: 96vw; max-height: 78vh; border-radius: 4px; object-fit: contain; }
.dok-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}
.dok-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
}
.dok-lightbox__nav--prev { left: .5rem; }
.dok-lightbox__nav--next { right: .5rem; }
.dok-lightbox__counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #aaa;
  font-size: .8rem;
}
