/* ═══════════════════════════════════
   RESET & DEĞİŞKENLER
═══════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:        #000000;
  --white:        #ffffff;
  --white-dim:    rgba(255, 255, 255, 0.45);
  --neon:         #1a6fff;
  --neon-glow:    rgba(26, 111, 255, 0.55);
  --neon-bg:      rgba(26, 111, 255, 0.1);
  --neon-border:  rgba(26, 111, 255, 0.65);
  --bar-height:   68px;
  --font:         'Outfit', sans-serif;
  --ease:         0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font);
  background: #080c18;
  min-height: 100vh;
  color: var(--white);
}

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--bar-height);
  padding: 0 36px;
  transition: box-shadow 0.3s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.9);
}

/* ── Alt neon çizgi (pseudo element ile) ── */
.navbar__strip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 68%;
  height: 1.5px;
  background: var(--neon);
  box-shadow: 0 0 10px 2px var(--neon-glow);
  border-radius: 2px;
}

/* ═══════════════════════════════════
   LOGOLAR
═══════════════════════════════════ */
.navbar__logo {
  cursor: pointer;
  opacity: 0.85;
  transition: opacity var(--ease), filter var(--ease);
  flex-shrink: 0;
}

.navbar__logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--neon-glow));
}

/* ═══════════════════════════════════
   MENÜ
═══════════════════════════════════ */
.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
}

/* ═══════════════════════════════════
   BUTONLAR
═══════════════════════════════════ */
.navbar__btn {
  display: block;
  padding: 9px 0;
  width: 120px;   /* sabit genişlik — buton sayısı arttıkça bu değeri küçültebilirsin */
  text-align: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--white-dim);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition:
    color        var(--ease),
    background   var(--ease),
    border-color var(--ease),
    box-shadow   var(--ease);
}

/* Üst ince vurgu çizgisi */
.navbar__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background: var(--neon);
  border-radius: 1px;
  transition: width var(--ease);
}

.navbar__btn:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--neon-border);
  box-shadow: 0 0 14px 2px var(--neon-glow);
  animation: pulse 2s ease-in-out infinite;
}

.navbar__btn:hover::before {
  width: 70%;
}

.navbar__btn:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* ═══════════════════════════════════
   ANİMASYON
═══════════════════════════════════ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px 1px rgba(26,111,255,0.45); }
  50%       { box-shadow: 0 0 20px 4px rgba(26,111,255,0.75); }
}

/* ═══════════════════════════════════
   DEMO SAYFA İÇERİĞİ
═══════════════════════════════════ */
.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 40px;
  gap: 16px;
  text-align: center;
}

.page-content h1 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--white);
}

.page-content p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: rgba(26, 111, 255, 0.7);
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   RESPONSİVE
═══════════════════════════════════ */
@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.3s ease;
  }

  .navbar__btn {
    width: 80px;
    font-size: 11px;
    padding: 8px 0;
  }

  .navbar__logo svg {
    width: 90px;
  }

  .navbar__strip {
    width: 88%;
  }
}

/* ═══════════════════════════════════
   HERO RESİM
═══════════════════════════════════ */
html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

.hero {
  width: 100%;
  height: calc(100vh - 68px); /* ekran yüksekliği - navbar */
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;     
  -webkit-user-select: none;
  -webkit-user-drag: none;
  z-index: 0; 
}



/* Kenar karartma */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

/* Yazı alanı */
.hero__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12%;
  gap: 20px;
  pointer-events: none;
}

.hero__title {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.hero__desc {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  letter-spacing: 0.2px;
}

/* ═══════════════════════════════════
   MARKA TANITIM BÖLÜMİ
═══════════════════════════════════ */
.brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 100px 40px;
  background: #080c18;
}

.brand-card {
  width: 540px;
  height: 400px;
  border-radius: 24px;
  border: 1px solid rgba(26, 111, 255, 0.2);
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.brand-card:hover {
  border-color: rgba(26, 111, 255, 0.6);
  box-shadow: 0 0 24px 4px rgba(26, 111, 255, 0.15);
}

.brand-model {
  width: 100%;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  --progress-bar-color: #1a6fff;
}

.brand-card__name {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.brand-card:hover {
  border-color: rgba(26, 111, 255, 0.6);
  box-shadow: 0 0 24px 4px rgba(26, 111, 255, 0.15);
}

.brand-card__name {
  font-family: var(--font);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #ffffff;
}
/* ═══════════════════════════════════
   TEPEYE ÇIK BUTONU
═══════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(26, 111, 255, 0.5);
  background: #0e0e0e;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: rgba(26, 111, 255, 0.9);
  box-shadow: 0 0 14px 2px rgba(26, 111, 255, 0.45);
}

/* ═══════════════════════════════════
   ZİYARETÇİ SAYACI
═══════════════════════════════════ */
.counter-section {
  width: 100%;
  height: 350px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.counter-label {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888888;
}

.counter-number {
  font-family: var(--font);
  font-size: 120px;
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1;
  letter-spacing: -2px;
}


/* ═══════════════════════════════════
   MARKA BİLGİ KUTULARI
═══════════════════════════════════ */
.brand-info {
  width: 100%;
  background: #080c18;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 32px;
}

.brand-info__card {
  width: 100%;
  max-width: 860px;
  background: #0e0e0e;
  border: 1px solid rgba(26, 111, 255, 0.15);
  border-radius: 20px;
  padding: 48px 56px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.brand-info__card:hover {
  border-color: rgba(26, 111, 255, 0.5);
  box-shadow: 0 0 24px 4px rgba(26, 111, 255, 0.1);
}

.brand-info__title {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #ffffff;
  margin-bottom: 24px;
}

.brand-info__text {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.counter-time {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 4px;
  color: rgba(10, 15, 30, 0.5);
}

/* ═══════════════════════════════════
   ÖNE ÇIKAN MODELLER
═══════════════════════════════════ */
.featured {
  width: 100%;
  background: #080c18;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.featured__title {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #ffffff;
  text-transform: uppercase;
}

.featured__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 960px;
}

.featured__card {
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.featured__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 111, 255, 0.2);
}

/* Sol — resim alanı */
.featured__img-wrap {
  width: 340px;
  height: 100%;
  flex-shrink: 0;
  background: #f0f0f0;
  overflow: hidden;
}

.featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

/* Sağ — bilgi alanı */
.featured__info {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.featured__brand {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #1a6fff;
  text-transform: uppercase;
}

.featured__name {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: #0a0f1e;
  letter-spacing: 1px;
}

.featured__specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-top: 4px;
}

.featured__specs li {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: #555555;
}

.featured__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 24px;
  background: transparent;
  border: 1px solid #1a6fff;
  border-radius: 8px;
  color: #1a6fff;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
  transition: background 0.3s ease, color 0.3s ease;
}

.featured__btn:hover {
  background: #1a6fff;
  color: #ffffff;
}


/* ═══════════════════════════════════
   CTA BÖLÜMÜ
═══════════════════════════════════ */
.cta {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid rgba(26, 111, 255, 0.15);
  border-bottom: 1px solid rgba(26, 111, 255, 0.15);
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta__inner {
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta__sub {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1a6fff;
}

.cta__title {
  font-family: var(--font);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.2;
}

.cta__desc {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.cta__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 40px;
  background: transparent;
  border: 1px solid #1a6fff;
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cta__btn:hover {
  background: #1a6fff;
  box-shadow: 0 0 20px 4px rgba(26, 111, 255, 0.4);
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  width: 100%;
  background: #000000;
  border-top: 1px solid rgba(26, 111, 255, 0.15);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Sol logolar */
.footer__logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer__logo-img:hover {
  opacity: 1;
}

/* Orta ve sağ */
.footer__heading {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a6fff;
  margin-bottom: 16px;
}

.footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__text {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

/* Alt çizgi */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 40px;
  text-align: center;
}

.footer__bottom p {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.25);
}
/* ═══════════════════════════════════
   İLETİŞİM SAYFASI
═══════════════════════════════════ */
.contact-page {
  min-height: calc(100vh - 68px);
  background: #080c18;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.contact-card {
  width: 100%;
  max-width: 640px;
  background: #0a0a0a;
  border: 1px solid rgba(26,111,255,0.18);
  border-radius: 24px;
  padding: 40px 40px 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form__row label {
  color: rgba(255,255,255,0.3);
  font-family: var(--font);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-form__row input,
.contact-form__row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26,111,255,0.2);
  border-radius: 0;
  color: #ffffff;
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form__row input:focus,
.contact-form__row textarea:focus {
  border-color: rgba(26,111,255,0.7);
}

.contact-form__row textarea {
  resize: none;
  height: 76px;
}

.contact-form__btn {
  background: transparent;
  border: 1px solid rgba(26,111,255,0.4);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-form__btn:hover {
  background: rgba(26,111,255,0.12);
  border-color: #1a6fff;
  color: #ffffff;
}
.form-bildirim {
  display: none;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.form-bildirim.basarili {
  display: block;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

.form-bildirim.hata {
  display: block;
  background: rgba(255, 50, 50, 0.08);
  border: 1px solid rgba(255, 50, 50, 0.3);
  color: #ff5555;
}
/* ═══════════════════════════════════
   HARİTA
═══════════════════════════════════ */
.map-card {
  width: 100%;
  max-width: 640px;
  margin: 32px auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26,111,255,0.18);
  position: relative;
  cursor: pointer;
  height: 300px;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
  pointer-events: none;
}

.map-expand-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(26,111,255,0.4);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  padding: 6px 10px;
  pointer-events: none;
}

/* Overlay */
.map-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.map-overlay.active {
  display: flex;
}

.map-overlay__inner {
  width: 90%;
  max-width: 900px;
  height: 70vh;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26,111,255,0.3);
  position: relative;
}

.map-overlay__inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

.map-overlay__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(26,111,255,0.4);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.map-overlay__close:hover {
  background: rgba(26,111,255,0.2);
}
/* ═══════════════════════════════════
   İLETİŞİM SAYFASI
═══════════════════════════════════ */
.contact-page {
  min-height: calc(100vh - 68px);
  background: #080c18;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.contact-card--wide {
  width: 100%;
  max-width: 1100px;
  background: #0a0a0a;
  border: 1px solid rgba(26,111,255,0.18);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.contact-card__left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-card__right {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26,111,255,0.15);
  position: relative;
  min-height: 400px;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
  display: block;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.map-expand-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(26,111,255,0.4);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.map-expand-btn:hover {
  background: rgba(26,111,255,0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form__row label {
  color: rgba(255,255,255,0.3);
  font-family: var(--font);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-form__row input,
.contact-form__row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26,111,255,0.2);
  border-radius: 0;
  color: #ffffff;
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form__row input:focus,
.contact-form__row textarea:focus {
  border-color: rgba(26,111,255,0.7);
}

.contact-form__row textarea {
  resize: none;
  height: 76px;
}

.contact-form__btn {
  background: transparent;
  border: 1px solid rgba(26,111,255,0.4);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-form__btn:hover {
  background: rgba(26,111,255,0.12);
  border-color: #1a6fff;
  color: #ffffff;
}

/* Overlay */
.map-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
}

.map-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay__inner {
  width: 90%;
  max-width: 900px;
  height: 70vh;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26,111,255,0.3);
  position: relative;
}

.map-overlay__inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

.map-overlay__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(26,111,255,0.4);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.map-overlay__close:hover {
  background: rgba(26,111,255,0.2);
}
/* ═══════════════════════════════════
   RESET & DEĞİŞKENLER
═══════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:        #000000;
  --white:        #ffffff;
  --white-dim:    rgba(255, 255, 255, 0.45);
  --neon:         #1a6fff;
  --neon-glow:    rgba(26, 111, 255, 0.55);
  --neon-bg:      rgba(26, 111, 255, 0.1);
  --neon-border:  rgba(26, 111, 255, 0.65);
  --bar-height:   68px;
  --font:         'Outfit', sans-serif;
  --ease:         0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font);
  background: #080c18;
  min-height: 100vh;
  color: var(--white);
}

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--bar-height);
  padding: 0 36px;
  transition: box-shadow 0.3s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.9);
}

/* ── Alt neon çizgi (pseudo element ile) ── */
.navbar__strip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 68%;
  height: 1.5px;
  background: var(--neon);
  box-shadow: 0 0 10px 2px var(--neon-glow);
  border-radius: 2px;
}

/* ═══════════════════════════════════
   LOGOLAR
═══════════════════════════════════ */
.navbar__logo {
  cursor: pointer;
  opacity: 0.85;
  transition: opacity var(--ease), filter var(--ease);
  flex-shrink: 0;
}

.navbar__logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--neon-glow));
}

/* ═══════════════════════════════════
   MENÜ
═══════════════════════════════════ */
.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
}

/* ═══════════════════════════════════
   BUTONLAR
═══════════════════════════════════ */
.navbar__btn {
  display: block;
  padding: 9px 0;
  width: 120px;   /* sabit genişlik — buton sayısı arttıkça bu değeri küçültebilirsin */
  text-align: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--white-dim);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition:
    color        var(--ease),
    background   var(--ease),
    border-color var(--ease),
    box-shadow   var(--ease);
}

/* Üst ince vurgu çizgisi */
.navbar__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background: var(--neon);
  border-radius: 1px;
  transition: width var(--ease);
}

.navbar__btn:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--neon-border);
  box-shadow: 0 0 14px 2px var(--neon-glow);
  animation: pulse 2s ease-in-out infinite;
}

.navbar__btn:hover::before {
  width: 70%;
}

.navbar__btn:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* ═══════════════════════════════════
   ANİMASYON
═══════════════════════════════════ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px 1px rgba(26,111,255,0.45); }
  50%       { box-shadow: 0 0 20px 4px rgba(26,111,255,0.75); }
}

/* ═══════════════════════════════════
   DEMO SAYFA İÇERİĞİ
═══════════════════════════════════ */
.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 40px;
  gap: 16px;
  text-align: center;
}

.page-content h1 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--white);
}

.page-content p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: rgba(26, 111, 255, 0.7);
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   RESPONSİVE
═══════════════════════════════════ */
@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }

  .navbar__btn {
    width: 80px;
    font-size: 11px;
    padding: 8px 0;
  }

  .navbar__logo svg {
    width: 90px;
  }

  .navbar__strip {
    width: 88%;
  }
}

/* ═══════════════════════════════════
   HERO RESİM
═══════════════════════════════════ */
html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

.hero {
  width: 100%;
  height: calc(100vh - 68px); /* ekran yüksekliği - navbar */
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════
   MODELLER SAYFASI
═══════════════════════════════════ */
.models-page {
  background: #080c18;
  min-height: 100vh;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Bölüm başlığı */
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-header__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,111,255,0.4));
}

.section-header__line:last-child {
  background: linear-gradient(90deg, rgba(26,111,255,0.4), transparent);
}

.section-header__title {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

/* ── Öne çıkan 3 model ── */
.featured-models__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.featured-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px 4px rgba(26,111,255,0.2);
}

.featured-card__img-wrap {
  width: 340px;
  flex-shrink: 0;
  background: #f0f0f0;
  overflow: hidden;
}

.featured-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.featured-card__info {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.featured-card__brand {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #1a6fff;
  text-transform: uppercase;
}

.featured-card__name {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: #0a0f1e;
}

.featured-card__specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.featured-card__specs li {
  font-family: var(--font);
  font-size: 13px;
  color: #555;
}

.featured-card__btn {
  display: inline-block;
  margin-top: 6px;
  padding: 7px 20px;
  border: 1px solid #1a6fff;
  border-radius: 7px;
  color: #1a6fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
  transition: background 0.3s, color 0.3s;
}

.featured-card:hover .featured-card__btn {
  background: #1a6fff;
  color: #fff;
}

/* ── Trendyol tarzı grid ── */
.brand-models {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.model-card {
  background: #0e0e0e;
  border: 1px solid rgba(26,111,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
  border-color: rgba(26,111,255,0.6);
  box-shadow: 0 0 20px 3px rgba(26,111,255,0.15);
}

.model-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  overflow: hidden;
}

.model-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.4s ease;
}

.model-card:hover .model-card__img {
  transform: scale(1.04);
}

.model-card__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.model-card__brand {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #1a6fff;
  text-transform: uppercase;
}

.model-card__name {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.model-card__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}

.model-card__specs li {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
}