:root {
  --brand:     #0b1d3a;
  --accent:    #c2282e;
  --accent-d:  #a12025;
  --gold:      #c9a94e;
}

/* İletişim formları: bot honeypot (görünmez, ekran okuyucudan gizli) */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Mobilde yatay kaydırma / taşma */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.firsat-hero-swiper-wrap {
  max-width: 100%;
  overflow: hidden;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  transition: background .4s ease, box-shadow .4s ease, transform .4s cubic-bezier(.4,0,.2,1);
}
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: none !important;
  box-shadow:
    0 2px 12px -4px rgba(11, 29, 58, 0.07),
    0 1px 4px -2px rgba(0, 0, 0, 0.04) !important;
}
.site-header.is-solid .hdr-logo-text { color: var(--brand) !important; }
.site-header.is-solid .hdr-logo-accent { color: var(--accent) !important; }
.site-header.is-solid .hdr-nav-link { color: #1a1a1a !important; }
.site-header.is-solid .hdr-nav-link:hover { color: var(--accent) !important; }
.site-header.is-solid .hdr-phone { color: #6b7280 !important; }
.site-header.is-solid .hdr-phone:hover { color: var(--brand) !important; }
.site-header.is-solid .hamburger span { background: var(--brand) !important; }

.site-header.is-hidden {
  transform: translateY(-100%);
}

/* İlan detay: kaydırınca üstte özet (referans: ikon + metin şeridi) */
.ilan-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 98;
  top: 5rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(11, 29, 58, 0.04);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, top 0.35s ease;
  pointer-events: none;
}
.ilan-sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ilan-sticky-bar.ilan-sticky-bar--header-hidden {
  top: 0;
}
.ilan-sticky-bar__scroll {
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ilan-sticky-bar__scroll::-webkit-scrollbar {
  display: none;
}
.ilan-sticky-bar .ilan-sticky-item {
  letter-spacing: -0.01em;
}
.ilan-sticky-bar .ilan-sticky-icon-shift {
  color: #9ca3af;
}

/* Nav underline */
.hdr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.hdr-nav-link:hover::after,
.nav-item:hover > .hdr-nav-link::after { transform: scaleX(1); }

/* Mega/dropdown */
.nav-item { padding-bottom: 12px; margin-bottom: -12px; }
.mega-menu, .dropdown-menu {
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-item:hover > .mega-menu,
.nav-item:hover > .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.nav-item:hover ~ .nav-item .mega-menu,
.nav-item:hover ~ .nav-item .dropdown-menu {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.site-header.is-hidden .mega-menu,
.site-header.is-hidden .dropdown-menu {
  opacity: 0 !important; visibility: hidden !important; pointer-events: none !important;
}

/* ── Hamburger ────────────────────────────────────────────── */
.hamburger span { transition: all .3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ───────────────────────────────────────────── */
.nav-mobile { transition: transform .35s cubic-bezier(.4,0,.2,1); }
.nav-mobile.open { transform: translateX(0) !important; }
.nav-mobile-overlay { transition: opacity .3s ease; }
.nav-mobile-overlay.open { opacity: 1 !important; visibility: visible !important; }
.mob-sub { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mob-sub.open { max-height: 400px; }

/* ── Hero slider ──────────────────────────────────────────── */
.hero-slide { opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide .hero-bg {
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-dot {
  transition: all .3s ease;
}
.hero-dot.active { width: 40px; background: #fff; }

/* ── Reveal animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Service card ─────────────────────────────────────────── */
.svc-card {
  transition: transform .4s ease, box-shadow .4s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

/* ── Counter ──────────────────────────────────────────────── */
.stat-num { font-variant-numeric: tabular-nums; }

/* ── Before / After Slider ────────────────────────────────── */
.ba-slider {
  max-width: 900px;
  margin: 0 auto;
}
.ba-wrapper {
  --ba-pos: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: col-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  line-height: 0;
}
.ba-after {
  display: block;
  width: 100%;
  height: auto;
}
.ba-before-clip {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.ba-handle-knob {
  position: relative;
  z-index: 2;
  min-width: 48px;
  width: 48px;
  min-height: 48px;
  height: 48px;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  transition: transform .15s ease;
}
.ba-handle-knob svg {
  flex-shrink: 0;
}
.ba-wrapper:active .ba-handle-knob {
  transform: scale(1.12);
}

.ba-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #6b7280;
}
.ba-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .01em;
}
.ba-meta-item em {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9ca3af;
  flex-shrink: 0;
}
.ba-meta-item:last-child em {
  background: var(--accent);
}

/* ── Scroll top ───────────────────────────────────────────── */
.scroll-top { transition: all .3s ease; }
.scroll-top.show { opacity: 1 !important; visibility: visible !important; }

/* ── Toast ────────────────────────────────────────────────── */
.toast { transform: translateY(120%); transition: transform .3s ease; }
.toast.show { transform: translateY(0); }

/* ── Form ─────────────────────────────────────────────────── */
.form-input {
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194,40,46,.06);
}

/* ── Promo Popup ──────────────────────────────────────────── */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.promo-popup.open {
  opacity: 1;
  visibility: visible;
}

.promo-backdrop {
  position: absolute;
  inset: 0;
  /* Kurumsal: ağır blur yerine hafif buzlu cam + marka laciverti */
  background: rgba(11, 29, 58, 0.72);
  backdrop-filter: blur(3px) saturate(1.05);
  -webkit-backdrop-filter: blur(3px) saturate(1.05);
}

.promo-inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: calc(100% - 48px);
  transform: scale(.9) translateY(20px);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.promo-popup.open .promo-inner {
  transform: scale(1) translateY(0);
}

.promo-img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.promo-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #4b5563;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(11, 29, 58, 0.12);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
  z-index: 2;
}
.promo-close:hover {
  transform: scale(1.04);
  color: #0b1d3a;
  box-shadow: 0 8px 20px rgba(11, 29, 58, 0.15);
}

/* ── Portfolio / Vitrin ──────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
@media (max-width: 1023px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}
@media (max-width: 639px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-tall { grid-row: span 2; }
.portfolio-wide { grid-column: span 2; }

@media (max-width: 639px) {
  .portfolio-tall { grid-row: span 2; }
  .portfolio-wide { grid-column: span 2; }
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
}
.portfolio-desc {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

/* Play button */
.portfolio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.portfolio-play svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  margin-left: 2px;
}
.portfolio-item:hover .portfolio-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.portfolio-item:not(.portfolio-video) { cursor: zoom-in; }

/* ── Service Gallery (alt sayfa) ─────────────────────────── */
.svc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}
.svc-gallery-wide { grid-column: span 2; }
.svc-gallery-tall { grid-row: span 2; }

@media (max-width: 1023px) {
  .svc-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}
@media (max-width: 639px) {
  .svc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .svc-gallery-wide { grid-column: span 2; }
}

.svc-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.svc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.svc-gallery-item:hover img {
  transform: scale(1.05);
}

/* ── Image Lightbox ──────────────────────────────────────── */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.image-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 22, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.image-lightbox-inner {
  position: relative;
  z-index: 1;
  width: min(96vw, 1560px);
  transform: scale(.97);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.image-lightbox.open .image-lightbox-inner { transform: scale(1); }
.image-lightbox-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(80vh, 960px);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
}
.image-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transform: scale(1);
  transition: transform .25s ease;
  cursor: zoom-in;
}
.image-lightbox-img.is-zoomed {
  transform: scale(1.75);
  cursor: zoom-out;
  pointer-events: none;
}
.image-lightbox-close,
.image-lightbox-nav {
  position: absolute;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(11,29,58,.55);
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.image-lightbox-close {
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  z-index: 60;
}
.image-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
}
.image-lightbox-prev { left: 14px; }
.image-lightbox-next { right: 14px; }
.image-lightbox-nav.is-disabled {
  visibility: hidden;
  pointer-events: none;
}
.image-lightbox-meta {
  position: relative;
  z-index: 55;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.image-lightbox-title {
  font-size: 14px;
  color: rgba(255,255,255,.72);
}
.image-lightbox-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.image-lightbox-zoom {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 6px 12px;
}
.image-lightbox-count {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ── Video Lightbox ──────────────────────────────────────── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.video-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.video-lightbox-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 24px;
  transform: scale(.92);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.video-lightbox.open .video-lightbox-inner {
  transform: scale(1);
}

.video-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: color .2s ease, background .2s ease;
}
.video-lightbox-close:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.video-lightbox-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-lightbox-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-lightbox-title {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 16px;
  transform: scale(.95) translateY(10px);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 24px;
  box-shadow: 0 25px 80px rgba(0,0,0,.15);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover {
  background: #f3f3f3;
  color: #333;
}

/* ═══ VIDEO REEL ═══ */
.vr-section { background: var(--brand, #0f172a); }

.vr-intro {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: clamp(320px, 32vw, 480px);
  display: flex;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}
.vr-intro-content {
  padding: 0 clamp(32px, 4vw, 64px);
  transition: none;
  will-change: opacity, transform;
}

.vr-swiper {
  overflow: visible;
  z-index: 2;
}

.vr-slide {
  flex-shrink: 0;
  height: 100%;
  padding: 24px 8px;
}

.vr-card {
  position: relative;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.vr-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.vr-card:hover .vr-poster { transform: scale(1.04); }

.vr-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.vr-play svg {
  width: 48px;
  height: 48px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
  opacity: .85;
  transition: opacity .3s ease, transform .3s ease;
}
.vr-card:hover .vr-play svg { opacity: 1; transform: scale(1.08); }

.vr-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 18px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ═══ FIRSAT ARAÇLARI ═══ */
.firsat-card {
  min-width: 0;
}
.firsat-strip {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

#firsat-list-wrap {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1023px) {
  #firsat-araclari aside nav.firsat-filter-nav {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}
@media (max-width: 767px) {
  .firsat-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 1.25rem;
    align-items: stretch;
  }
  .firsat-card {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .firsat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .firsat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}
.firsat-card-inner {
  min-width: 0;
}
.firsat-card-address {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.firsat-card-media {
  overflow: hidden;
}
.firsat-card-media > a {
  cursor: zoom-in;
}
.firsat-card-media > a img {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.firsat-card-media > a:hover img {
  transform: scale(1.07);
}
.firsat-card-media > a:focus-visible img {
  transform: scale(1.04);
}

.ilan-cover-zoom img {
  cursor: zoom-in;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.ilan-cover-zoom:hover img {
  transform: scale(1.06);
}

.ilan-gallery-swiper .swiper-slide img.ilan-gallery-slide-img {
  cursor: zoom-in;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.ilan-gallery-swiper .swiper-slide:hover img.ilan-gallery-slide-img {
  transform: scale(1.06);
}
.firsat-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 45%);
}
.firsat-play svg {
  width: 52px;
  height: 52px;
  color: #fff;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.45));
  opacity: 0.92;
  transition: transform .25s ease, opacity .25s ease;
}
.firsat-card-media.portfolio-video:hover .firsat-play svg {
  opacity: 1;
  transform: scale(1.06);
}

.firsat-hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
}
.firsat-hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.firsat-video-hit {
  pointer-events: auto;
}

/* Araç gövde şeması (ilan expertiz özeti) */
.lm-body-diagram-public .lm-body-diagram-stack {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 220 / 340;
  margin: 0 auto;
  background: #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.lm-body-diagram-public .lm-body-diagram-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
}
.lm-body-diagram-public .lm-body-diagram-overlay-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.lm-body-diagram-public .lm-body-diagram-svg:not(.lm-body-diagram-overlay-svg) {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  min-height: 340px;
  aspect-ratio: 220 / 340;
  margin: 0 auto;
}
.lm-body-diagram-public .lm-bd-region {
  transition: opacity 0.15s ease;
}
.lm-body-diagram-public .lm-bd-region:hover {
  opacity: 0.94;
}
.lm-body-diagram-public .lm-bd--temiz {
  fill: #b8c9d6 !important;
}
.lm-body-diagram-public .lm-bd--lokal_boya {
  fill: #facc15;
}
.lm-body-diagram-public .lm-bd--boyali {
  fill: #ea580c;
}
.lm-body-diagram-public .lm-bd--degisen {
  fill: #dc2626;
}
.lm-body-diagram-public .lm-bd--cizik {
  fill: #2563eb;
}
.lm-body-diagram-public .lm-bd--ezik {
  fill: #9333ea;
}
.lm-body-diagram-public .lm-bd--onarim {
  fill: #22c55e;
}
.lm-bd-swatch {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  vertical-align: middle;
}
.lm-bd-swatch.lm-bd--temiz {
  background: #94a3b8;
}
.lm-bd-swatch.lm-bd--lokal_boya {
  background: #facc15;
}
.lm-bd-swatch.lm-bd--boyali {
  background: #ea580c;
}
.lm-bd-swatch.lm-bd--degisen {
  background: #dc2626;
}
.lm-bd-swatch.lm-bd--cizik {
  background: #2563eb;
}
.lm-bd-swatch.lm-bd--ezik {
  background: #9333ea;
}
.lm-bd-swatch.lm-bd--onarim {
  background: #22c55e;
}
