/* =========================================================
   ZTS ELEKTRONİK — Sanal Showroom
   Tasarım dili: Apple esinli aydınlık tema
   (beyaz / #f5f5f7 zeminler, #1d1d1f metin, #0071e3 mavi vurgu, SF Pro)
   ========================================================= */

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-gray: #f5f5f7;        /* Apple imzası açık gri */
  --bg-dark: #000000;        /* tam siyah vurgu bölümleri */
  --surface: #ffffff;
  --surface-2: #f5f5f7;
  --text: #1d1d1f;           /* Apple ana metin */
  --text-dim: #6e6e73;       /* ikincil metin */
  --text-faint: #86868b;     /* soluk metin */
  --line: #d2d2d7;           /* ince çizgiler */
  --line-soft: rgba(0, 0, 0, 0.08);
  --blue: #0071e3;           /* buton mavisi */
  --blue-hover: #0077ed;
  --blue-link: #0066cc;      /* metin link mavisi */
  --blue-bright: #2997ff;    /* koyu zeminde parlak mavi */
  --blue-soft: rgba(0, 113, 227, 0.10);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.28, 0.11, 0.32, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Inter", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.47;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
::selection { background: var(--blue); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-gray); }
::-webkit-scrollbar-thumb { background: #c7c7cc; border-radius: 8px; border: 2px solid var(--bg-gray); }
::-webkit-scrollbar-thumb:hover { background: #aeaeb2; }

/* =========================================================
   BUTONLAR  (Apple pill buton)
   ========================================================= */
.btn {
  --pad-y: 12px; --pad-x: 22px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: var(--pad-y) var(--pad-x);
  border: none; border-radius: 980px;
  font-size: 17px; font-weight: 400; font-family: inherit; line-height: 1.2;
  cursor: pointer; white-space: nowrap;
  transition: background .25s var(--ease), color .25s, transform .2s var(--ease), box-shadow .3s var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--primary:hover { background: var(--blue-hover); }

.btn--ghost {
  background: transparent;
  color: var(--blue-link);
  padding-left: 6px; padding-right: 6px;
}
.btn--ghost:hover { text-decoration: underline; }

.btn--block { width: 100%; padding-top: 15px; padding-bottom: 15px; }

.btn__spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  display: none; animation: spin .7s linear infinite;
}
.btn.is-loading .btn__label { opacity: .5; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   NAVIGATION  (Apple translucent bar)
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s;
}
.nav.is-scrolled { border-bottom: 1px solid var(--line-soft); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  height: 52px; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 9px; font-weight: 600; letter-spacing: -0.02em; }
.nav__logo-img {
  height: 36px; width: auto; object-fit: contain; display: block;
  transition: transform .4s var(--ease);
}
.nav__logo:hover .nav__logo-img { transform: scale(1.06); }
.nav__logo-word { display: inline-flex; align-items: baseline; gap: 6px; line-height: 1; }
.nav__logo-mark { font-size: 19px; font-weight: 700; color: var(--text); letter-spacing: 0.01em; line-height: 1; }
.nav__logo-text { font-size: 15px; color: var(--text-dim); font-weight: 400; line-height: 1; }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  font-size: 13px; color: var(--text); font-weight: 400; opacity: 0.85;
  padding: 8px 12px; border-radius: 980px;
  transition: opacity .2s, color .2s, background .2s;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  background: var(--blue);
  color: #fff !important; opacity: 1 !important;
  padding: 7px 16px !important;
}
.nav__cta:hover { background: var(--blue-hover); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 120px 22px 90px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, #eef3fb 0%, transparent 60%),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 60%, #f5f5f7 100%);
}
.hero__glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 700px; max-width: 140vw;
  background: radial-gradient(circle, rgba(41,151,255,0.12) 0%, transparent 62%);
  filter: blur(10px); pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite alternate;
}
@keyframes floatGlow {
  from { transform: translateX(-50%) translateY(0) scale(1); opacity: .7; }
  to   { transform: translateX(-50%) translateY(36px) scale(1.07); opacity: 1; }
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__eyebrow { font-size: 19px; font-weight: 600; color: var(--text-dim); margin-bottom: 12px; }
.hero__title {
  font-size: clamp(48px, 9.5vw, 110px);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.03;
  margin-bottom: 22px; color: var(--text);
}
.hero__title-grad {
  background: linear-gradient(120deg, #2997ff 0%, #0071e3 55%, #0a4db3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(19px, 2.4vw, 26px); color: var(--text-dim);
  max-width: 640px; margin: 0 auto 34px; font-weight: 400; line-height: 1.38;
}
.hero__actions { display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; }

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-faint); font-size: 12px; z-index: 2; }
.hero__scroll-mouse { width: 22px; height: 34px; border: 1.5px solid var(--text-faint); border-radius: 12px; position: relative; }
.hero__scroll-mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; background: var(--text-faint); border-radius: 3px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,10px)} }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-gray); overflow: hidden; padding: 20px 0; }
.marquee__track { display: flex; gap: 36px; white-space: nowrap; width: max-content; animation: marquee 30s linear infinite; }
.marquee__track span { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; color: var(--text-faint); }
.marquee__track span:nth-child(even) { color: var(--blue-link); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SECTION GENEL
   ========================================================= */
.section { max-width: var(--maxw); margin: 0 auto; padding: 130px 22px; }
.section__head { max-width: 740px; margin: 0 auto 60px; text-align: center; }
.section__eyebrow { font-size: 19px; font-weight: 600; color: var(--blue-link); margin-bottom: 10px; }
.section__title { font-size: clamp(34px, 5.5vw, 56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 18px; color: var(--text); }
.section__lead { font-size: clamp(19px, 2vw, 22px); color: var(--text-dim); font-weight: 400; }

/* Gri zeminli bölümler için sarmalayıcı */
.band-gray { background: var(--bg-gray); }

/* =========================================================
   PRODUCTS  (foto animasyonlu kartlar)
   ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  position: relative; border-radius: var(--radius-lg);
  background: var(--bg-gray); border: 1px solid transparent;
  overflow: hidden; min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.28); }

.product-card__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.12); opacity: 0;
  transition: transform 1.1s var(--ease), opacity 1.1s var(--ease);
}
/* reveal: kart görünüme girince foto yumuşakça büyüyerek belirir */
.product-card.is-in .product-card__media { transform: scale(1); opacity: 1; }
.product-card:hover .product-card__media { transform: scale(1.06); }

/* foto yoksa şık degrade fallback */
.product-card__fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px; color: rgba(0,0,0,0.06);
  background: linear-gradient(135deg, #e8e8ed 0%, #f5f5f7 50%, #e3e9f2 100%);
}
.product-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 42%, transparent 70%); opacity: 0; transition: opacity .5s var(--ease); }
.product-card.has-img .product-card__overlay { opacity: 1; }

/* parlama (sheen) efekti — hover'da soldan sağa süzülür */
.product-card::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); pointer-events: none; z-index: 3; opacity: 0;
}
.product-card:hover::after { animation: sheen 0.9s var(--ease); }
@keyframes sheen { 0% { left: -60%; opacity: 0; } 30% { opacity: 1; } 100% { left: 130%; opacity: 0; } }

.product-card__body { position: relative; z-index: 2; padding: 26px; }
.product-card__tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--blue-link); background: var(--blue-soft);
  padding: 5px 12px; border-radius: 980px; margin-bottom: 12px;
  transition: color .4s, background .4s;
}
.product-card__name { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; color: var(--text); transition: color .4s; }
.product-card__desc { font-size: 15px; color: var(--text-dim); transition: color .4s; }
/* foto varsa metin beyaz */
.product-card.has-img .product-card__name { color: #fff; }
.product-card.has-img .product-card__desc { color: rgba(255,255,255,0.82); }
.product-card.has-img .product-card__tag { color: #fff; background: rgba(255,255,255,0.18); }

/* products "Tümünü Gör" */
.products__more { display: flex; justify-content: flex-end; margin-top: 32px; }
.products__more-btn { gap: 4px; }
.products__more-btn svg { transition: transform .3s var(--ease); }
.products__more-btn:hover svg { transform: translateX(4px); }
@media (max-width: 720px) { .products__more { justify-content: stretch; } .products__more-btn { width: 100%; } }

/* =========================================================
   GALLERY PAGE (urunler.html)
   ========================================================= */
.gallery-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 150px 22px 60px;
  background:
    radial-gradient(120% 80% at 50% -20%, #eef3fb 0%, transparent 60%),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 100%);
}
.gallery-hero__glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; max-width: 140vw;
  background: radial-gradient(circle, rgba(41,151,255,0.12) 0%, transparent 62%);
  filter: blur(10px); pointer-events: none;
}
.gallery-hero__content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.gallery-hero__title { font-size: clamp(40px, 7vw, 72px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.04; margin-bottom: 16px; }
.gallery-hero__sub { font-size: clamp(18px, 2.2vw, 23px); color: var(--text-dim); margin-bottom: 34px; }

.gallery-tabs { display: inline-flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  background: var(--bg-gray); padding: 6px; border-radius: 980px; border: 1px solid var(--line-soft); }
.gallery-tabs a {
  font-size: 14.5px; font-weight: 500; color: var(--text-dim);
  padding: 10px 18px; border-radius: 980px; transition: color .25s, background .25s;
}
.gallery-tabs a:hover { color: var(--text); }
.gallery-tabs a.is-active { background: var(--white); color: var(--blue-link); box-shadow: 0 1px 6px rgba(0,0,0,0.08); }

.gallery { max-width: var(--maxw); margin: 0 auto; padding: 40px 22px 120px; }
.gallery-cat { padding: 50px 0; scroll-margin-top: 80px; border-bottom: 1px solid var(--line-soft); }
.gallery-cat:last-child { border-bottom: none; }
.gallery-cat__head { margin-bottom: 28px; }
.gallery-cat__name { font-size: clamp(26px, 4vw, 38px); font-weight: 600; letter-spacing: -0.03em; }
.gallery-cat__desc { font-size: 17px; color: var(--text-dim); margin-top: 6px; }
.gallery-cat__count { font-size: 13px; color: var(--text-faint); margin-top: 8px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius);
  overflow: hidden; background: var(--bg-gray); border: 1px solid var(--line-soft);
  cursor: pointer; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -26px rgba(0,0,0,0.3); }
.gallery-item__media { position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.1); opacity: 0; transition: transform 1s var(--ease), opacity 1s var(--ease); }
.gallery-item.is-in .gallery-item__media { transform: scale(1); opacity: 1; }
.gallery-item:hover .gallery-item__media { transform: scale(1.06); }
.gallery-item__fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 54px; color: rgba(0,0,0,0.07);
  background: linear-gradient(135deg, #e8eef7 0%, #f5f5f7 55%, #eef0f4 100%);
}
.gallery-item__zoom {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); color: var(--text);
  display: flex; align-items: center; justify-content: center; opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease); transform: scale(0.8);
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: scale(1); }

@media (max-width: 940px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 3000; display: none;
  align-items: center; justify-content: center; padding: 40px;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(10px); }
.lightbox.is-open { display: flex; }
.lightbox__figure { margin: 0; max-width: 90vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lightbox__figure img { max-width: 100%; max-height: 78vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); animation: lbIn .4s var(--ease); }
.lightbox__figure figcaption { color: #f5f5f7; font-size: 15px; }
@keyframes lbIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.lightbox__close { position: absolute; top: 22px; right: 24px; width: 46px; height: 46px;
  border-radius: 50%; border: none; cursor: pointer; color: #fff;
  background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; }
.lightbox__close:hover { background: var(--blue); transform: rotate(90deg); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px;
  border-radius: 50%; border: none; cursor: pointer; color: #fff;
  background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.lightbox__nav:hover { background: var(--blue); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
@media (max-width: 560px) { .lightbox__nav { width: 42px; height: 42px; } .lightbox__nav--prev { left: 8px; } .lightbox__nav--next { right: 8px; } }

/* =========================================================
   SHOWROOM
   ========================================================= */
.showroom { padding-top: 70px; }
.showroom__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.showroom__media { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.showroom__media-inner {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(41,151,255,0.30), transparent 52%),
    radial-gradient(circle at 78% 82%, rgba(0,113,227,0.28), transparent 52%),
    linear-gradient(135deg, #e8eef7, #f5f5f7);
  background-size: cover; background-position: center;
  position: relative;
  animation: kenburns 16s ease-in-out infinite alternate;
}
.showroom__media-inner::after {
  content: "ZTS"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 130px; font-weight: 700; letter-spacing: -0.05em;
  color: rgba(0,0,0,0.05);
}
@keyframes kenburns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.08) translate(-1.5%, 1.5%); } }
.showroom__text .section__title, .showroom__text .section__eyebrow { text-align: left; }
.showroom__list { list-style: none; margin: 28px 0 32px; display: grid; gap: 14px; }
.showroom__list li { font-size: 18px; color: var(--text-dim); padding-left: 28px; position: relative; }
.showroom__list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.showroom__list strong { color: var(--text); font-weight: 600; }

/* =========================================================
   INTRO VIDEO (hero altı — sürekli oynar)
   ========================================================= */
.intro-video { max-width: 1280px; margin: 0 auto; padding: 8px 22px 70px; }
.intro-video__frame {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg);
  overflow: hidden; background: #000;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.45);
}
.intro-video__frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-video__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; text-align: center;
  background: radial-gradient(circle at 50% 38%, #e8eef7, #f5f5f7 70%);
  color: var(--text-dim);
}
.intro-video__placeholder p { font-size: 20px; font-weight: 500; color: var(--text); }
.intro-video__placeholder span { font-size: 13px; color: var(--text-faint); }
.intro-video__sound {
  position: absolute; bottom: 18px; right: 18px; z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(10px); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.intro-video__sound:hover { background: var(--blue); transform: scale(1.06); }
@media (max-width: 720px) { .intro-video { padding-bottom: 50px; } }

/* =========================================================
   VIDEOS
   ========================================================= */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-thumb { position: relative; aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; background: var(--bg-gray); border: 1px solid var(--line-soft); cursor: pointer; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.video-thumb:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -24px rgba(0,0,0,0.28); }
.video-thumb__media { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.1); opacity: 0; transition: transform 1s var(--ease), opacity 1s var(--ease); }
.video-thumb.is-in .video-thumb__media { transform: scale(1); opacity: 1; }
.video-thumb:hover .video-thumb__media { transform: scale(1.05); }
.video-thumb__fallback { position: absolute; inset: 0; background: linear-gradient(135deg, #e8eef7, #f5f5f7); }
.video-thumb__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72), transparent 58%); display: flex; align-items: flex-end; padding: 18px; }
.video-thumb__title { font-size: 16px; font-weight: 600; color: #fff; }
.video-thumb__icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.28); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: transform .3s var(--ease), background .3s;
}
.video-thumb:hover .video-thumb__icon { background: var(--blue); transform: translate(-50%,-50%) scale(1.1); }

/* VIDEO MODAL (küçük kartlar tıklanınca) */
.video-modal { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 40px; background: rgba(0,0,0,0.82); backdrop-filter: blur(10px); }
.video-modal.is-open { display: flex; }
.video-modal__inner { width: min(960px, 92vw); display: flex; flex-direction: column; gap: 14px; animation: lbIn .4s var(--ease); }
.video-modal__inner video { width: 100%; max-height: 78vh; border-radius: 16px; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.video-modal__title { color: #f5f5f7; font-size: 16px; font-weight: 500; text-align: center; }
.video-modal__close { position: absolute; top: 22px; right: 24px; width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer; color: #fff; background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; }
.video-modal__close:hover { background: var(--blue); transform: rotate(90deg); }

/* =========================================================
   LOCATION
   ========================================================= */
.location__card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-soft); cursor: pointer; background: var(--surface);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.location__card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.25); }
.location__map-preview { height: 380px; width: 100%; }
.location__map-preview .leaflet-control, .location__map-preview .leaflet-pane { pointer-events: none; }
.location__info { display: flex; align-items: center; gap: 18px; padding: 24px 28px; background: var(--surface); }
.location__pin { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.location__name { font-size: 20px; font-weight: 600; }
.location__addr { font-size: 15px; color: var(--text-dim); }
.location__open { margin-left: auto; color: var(--blue-link); font-weight: 500; font-size: 16px; white-space: nowrap; }

/* =========================================================
   CONTACT + FORM
   ========================================================= */
.contact { padding-bottom: 150px; }
.contact__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info .section__title, .contact__info .section__eyebrow { text-align: left; }
.contact__list { list-style: none; margin: 36px 0 28px; display: grid; gap: 22px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-gray); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.contact__list label { display: block; font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.contact__list a, .contact__list span { font-size: 17px; color: var(--text); }
.contact__list a:hover { color: var(--blue-link); }
.contact__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.contact__socials a { font-size: 14px; color: var(--text-dim); padding: 8px 16px; border-radius: 980px; border: 1px solid var(--line); transition: all .25s; }
.contact__socials a:hover { color: var(--blue-link); border-color: var(--blue-link); }

.contact__form-wrap { background: var(--bg-gray); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 40px; }
.apply-form__title { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.apply-form__desc { font-size: 15px; color: var(--text-dim); margin-bottom: 28px; }

.field { position: relative; margin-bottom: 16px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--text);
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 16px 8px; outline: none; resize: none;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { padding-top: 26px; min-height: 110px; }
.field select { padding-top: 24px; -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%236e6e73' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.field label { position: absolute; left: 16px; top: 17px; font-size: 16px; color: var(--text-faint); pointer-events: none; transition: all .2s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: 8px; font-size: 11px; color: var(--blue-link); letter-spacing: 0.02em; }
.field__label--static { top: 8px !important; font-size: 11px !important; color: var(--text-faint) !important; }
.field input:invalid:not(:placeholder-shown) { border-color: #ff3b30; }

.apply-form__status { margin-top: 16px; font-size: 15px; min-height: 20px; }
.apply-form__status.is-ok { color: #1a8f3c; }
.apply-form__status.is-err { color: #d70015; }
.apply-form__note { margin-top: 14px; font-size: 12.5px; color: var(--text-faint); text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); background: var(--bg-gray); padding: 50px 22px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.footer__logo-img { height: 34px; width: auto; object-fit: contain; }
.footer__brand p { width: 100%; font-size: 13px; color: var(--text-faint); margin-top: 6px; }
.footer__nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__nav a { font-size: 13px; color: var(--text-dim); transition: color .25s; }
.footer__nav a:hover { color: var(--blue-link); }
.footer__copy { width: 100%; font-size: 12px; color: var(--text-faint); border-top: 1px solid var(--line); padding-top: 22px; }

/* =========================================================
   MAP MODAL  (aydınlık panel)
   ========================================================= */
.map-modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.map-modal.is-open { display: block; }
.map-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); opacity: 0; transition: opacity .4s var(--ease); }
.map-modal.is-open .map-modal__backdrop { opacity: 1; }
.map-modal__panel {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-46%) scale(0.96); opacity: 0;
  width: min(940px, 92vw); height: min(680px, 86vh);
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.4);
}
.map-modal.is-open .map-modal__panel { transform: translate(-50%,-50%) scale(1); opacity: 1; }
.map-modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); color: var(--text);
  display: flex; align-items: center; justify-content: center; transition: background .25s, transform .25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.map-modal__close:hover { background: var(--blue); color: #fff; transform: rotate(90deg); }
.map-modal__map { flex: 1; width: 100%; }
.map-modal__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: var(--surface); border-top: 1px solid var(--line-soft); }
.map-modal__bar strong { display: block; font-size: 16px; }
.map-modal__bar span { font-size: 13.5px; color: var(--text-dim); }

.leaflet-container { background: #e8eef2; font-family: var(--font); }
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: var(--surface); color: var(--text); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.leaflet-popup-content { font-size: 14px; }

/* =========================================================
   REVEAL ANİMASYONLARI
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .product-card__media, .video-thumb__media { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .product-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .showroom__layout, .contact__layout { grid-template-columns: 1fr; gap: 40px; }
  .showroom__media { aspect-ratio: 16/10; max-height: 420px; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 52px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
    padding: 14px; border-bottom: 1px solid var(--line-soft);
    transform: translateY(-120%); transition: transform .45s var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 14px 16px; font-size: 16px; }
  .nav__toggle { display: flex; }
  .section { padding: 90px 20px; }
  .product-grid, .video-grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px 22px; }
  .location__info { flex-wrap: wrap; }
  .location__open { margin-left: 0; width: 100%; }
  .hero { padding-top: 100px; }
}
