body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}


/* ======================
   TOKENS
   ====================== */
@layer tokens {
  :root {
    /* ---- Brand / Accent (Amber) ---- */
    --brand-300: 40 100% 60%;
    /* hover / hafif vurgu */
    --brand-400: 40 100% 55%;
    --brand-500: 40 100% 50%;
    /* ana */
    --brand-600: 38 100% 45%;
    /* explore btn kenar/hover */
    --brand-700: 36 100% 40%;
    /* koyu vurgu */

    /* Eski turuncularla uyumlu alt tonlar (alias) */
    --brand-warm-1: 22 100% 50%;
    /* #ff6a00, #ff6600 */
    --brand-warm-2: 19 100% 51%;
    /* #ff5e00 */

    /* ---- Neutral / UI Gri Paleti (soğuk çelik) ---- */
    --neutral-0: 0 0% 100%;
    /* #ffffff */
    --neutral-10: 0 0% 97%;
    /* #f3f4f6 civarı */
    --neutral-100: 210 16% 89%;
    /* #dfe3e7 */
    --neutral-150: 210 14% 80%;
    /* #c8cdd3 */
    --neutral-200: 0 0% 91%;
    /* #e8e8e8 */
    --neutral-250: 0 0% 90%;
    /* #e5e5e5 */
    --neutral-800: 204 8% 26%;
    /* #383E42 */
    --neutral-820: 210 9% 19%;
    /* #2b2f33 */
    --neutral-850: 210 20% 10%;
    /* #151a20 */
    --neutral-900: 0 0% 7%;
    /* #111 */
    --neutral-920: 0 0% 13%;
    /* #222 */
    --neutral-980: 0 0% 4%;
    /* #0b0b0b */
    --neutral-990: 0 0% 0%;
    /* #000 */
    --neutral-700txt: 0 0% 23%;
    /* #3a3a3a (metin) */

    /* ---- Semantic (kullanım rolü) ---- */
    --bg: var(--neutral-990);
    --bg-elevated: var(--neutral-850);
    --panel: var(--neutral-820);
    --panel-strong: var(--neutral-800);

    --fg: 0 0% 100%;
    --fg-muted: var(--neutral-150);
    --fg-soft: var(--neutral-100);
    --fg-ink: var(--neutral-700txt);
    /* açık temadaki koyu metin */

    --border: 0 0% 90%;
    /* açık gri kenar (#e5e5e5) */
    --border-soft: 0 0% 91%;
    /* #e8e8e8 */
    --border-invert: 0 0% 8%;
    /* çok koyu kenar */

    --primary: var(--brand-500);
    --primary-contrast: 0 0% 100%;
    --primary-hover: var(--brand-300);
    --primary-press: var(--brand-600);

    --accent: var(--brand-500);
    --accent-contrast: 0 0% 100%;

    --overlay-dim: 0 0% 0%;
    /* siyah overlay baz */
    --overlay-lite: 0 0% 100%;
    /* beyaz overlay baz */

    --ease-glide: cubic-bezier(.22, .61, .36, 1);
    --ease-hover: cubic-bezier(.2, .8, .2, 1);
    --dur-glide: 600ms;
    --dur-hover: 220ms;
    --feat-shift: 60px;
    /* başlangıç kaydırma (10px → 42px) */
    --feat-opacity-start: .2;
    /* başlangıç opaklık (.92 → .35) */
    --feat-dur: .7s;
    /* süre (.28s → .55s) */
    --feat-ease: cubic-bezier(.22, .61, .36, 1);
    /* daha tok ease */
    --dur-hover: 220ms;


    /* Eski var() isimlerine köprü (bozma diye): */
    --hex-stroke: hsl(var(--hex-border));
    --hex-fill: hsl(var(--hex-bg));
    --drawer-speed: 480ms;
    /* çekmece aç/kapa hızı */
    --acc-speed: 520ms;
    /* akordeon aç/kapa hızı */
    --acc-open-speed: 600ms;
    /* açılış hızı */
    --acc-close-speed: 700ms;
    /* kapanış hızı */
    --acc-ease: cubic-bezier(.25, .8, .25, 1);
  }
}


/* header */
.aym-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: black;
  color: hsl(var(--fg));
}

.aym-bar {
  --pad: clamp(12px, 3vw, 28px);
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: center;
  gap: clamp(8px, 1.2vw, 18px);
  padding: 20px var(--pad);
  position: relative;
  /* mega paneli bu bloğa göre hizalayacağız */
}

/* sol %25 */
.aym-logo {
  display: block;
  line-height: 0
}

.aym-logo img {
  padding-left: 10rem;
  height: clamp(100px, 7.5vw, 160px);
  width: auto;
  object-fit: contain
}

/* sağ %75: iki katman */
.aym-right {
  padding-right: 10rem;
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 20px
}

/* üst util bar */
.aym-utils {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  /* satır kaydırmaya izin ver */
  gap: 8px 20px;
}

.aym-utils .aym-flags {
  flex: 1 0 100%;
  /* tam satır */
  justify-content: flex-end;
}


.aym-flags {
  display: flex;
  gap: 20px;
  align-items: center;
}

.aym-flags a img {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.aym-flags a:hover img {
  transform: scale(1.1);
}


.aym-util,
.aym-flags a {
  color: hsl(var(--fg));
  text-decoration: none;
}

.aym-util:hover {
  color: hsl(var(--brand-500));
}

/* alt menü */
.aym-menu {
  display: flex;
  justify-content: flex-end
}

.aym-menu__list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none
}

.aym-btn,
.aym-item>a {
  display: block;
  padding: 10px 14px;
  background: black;
  border-radius: 10px;
  border: 1px solid black;
  color: hsl(var(--fg));
  text-decoration: none;
  font-weight: 600;
}

.aym-item:hover>.aym-btn {
  background: hsl(var(--brand-500));
}

/* MEGA panel: tek blok altında, SADECE sağ %75 genişliğini kaplasın */
.aym-mega {
  position: absolute;
  left: calc(25% + var(--pad));
  right: var(--pad);
  top: calc(100% - 9px);
  background: rgba(0, 0, 0, 0.88);
  padding: 0 20px;
  border-radius: 10px;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  /* gizli kayma efekti için önemli */
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0.9);
  /* yükseklik hissi */
  transform-origin: top center;
  /* yukarıdan açılsın */
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0.6s ease;
  backdrop-filter: blur(6px);
  /* arka plan hafif bulanık efekti (isteğe bağlı) */
}

/* === AÇILDIĞINDA === */
.aym-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  /* sanki sayfa açılır gibi */
  padding: 20px;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 0s;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(8px)
  }
}

.aym-mega__grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  margin: 0;
  /* dış boşluklar overflow yaratmasın */
  box-sizing: border-box;
  gap: clamp(12px, 1.2vw, 20px);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  /* esnek */
  align-items: stretch;
}

.aym-card {
  width: 13.5rem;
  display: flex;
  flex-direction: column;
  color: hsl(var(--fg));
  text-decoration: none;
  overflow: hidden;
  height: auto !important;
  border-radius: 10px;
  min-height: 0 !important;
  min-width: 0;
  align-self: start;
  background: rgb(0, 0, 0);
  transition: transform .18s ease, background .18s ease
}

.aym-cards {
  align-items: start !important;
  /* flex/grid germe */
  grid-auto-rows: auto !important;
  /* varsa 1fr -> auto */
}

.aym-card:hover {
  transform: translateY(-2px);
  background: rgba(48, 53, 77, 0.582);
  color: rgb(255, 255, 255);
}

.aym-card img {
  display: block;
  border-radius: 5px;
  width: 12rem;
  min-width: 0;
  height: 10rem;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.aym-card strong {
  display: block;
  padding: 12px 12px 8px;
}

.aym-card small {
  display: block;
  min-width: 0;
  padding: 0 12px 12px;
  color: hsl(var(--fg-muted))
}

.aym-card .content {
  flex: 0 0 auto;
}



/* === AYM: Mobile menu iskeleti & varsayılan gizli === */

/* a) Hamburger ikon – başlangıçta gizli */
.aym-burger {
  display: none;
  /* 1040px altına kadar görünmez */
  width: 44px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: none;
  /* iki kez yazdım ki override edilsin */
  position: relative;
  margin-left: auto;
  /* mobilde sağa yaslamak için hazır */
}

.aym-burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: hsl(var(--fg));
  border-radius: 2px;
  transition: .25s ease;
}

.aym-burger span:nth-child(1) {
  top: 11px;
}

.aym-burger span:nth-child(2) {
  top: 18px;
}

.aym-burger span:nth-child(3) {
  top: 25px;
}

/* b) Drawer temel */
.aym-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.aym-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .36);
  opacity: 0;
  transition: opacity var(--drawer-speed) ease;
}

.aym-drawer__panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100dvh;
  max-height: 100svh;
  position: absolute;
  top: 0;
  right: 0;
  width: min(90vw, 380px);
  background: black;
  color: hsl(var(--fg));
  transform: translateX(100%);
  transition: transform calc(var(--drawer-speed) + 80ms) ease;
  box-sizing: border-box;
  overflow: hidden;
  flex-direction: column;
  padding-block: max(12px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-bottom));
  box-shadow: -16px 0 60px rgba(0, 0, 0, .35);
}

.aym-drawer__close {
  margin-left: auto;
  font-size: 28px;
  line-height: 1;
  border: 0;
  background: transparent;
  color: hsl(var(--brand-warm-1));
  cursor: pointer;
}

.aym-drawer__list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;

  flex: 1 1 auto;
  /* boşluğu doldur */
  min-height: 0;
  /* flex-overflow için şart */
  overflow-y: auto;
  /* dikey scroll burada */
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  /* iOS momentum scroll */
  scrollbar-gutter: stable;
  /* scrollbar çıkınca layout zıplamasın */
  padding-right: 4px;
  /* taşmayı engellemek için ufak nefes */
}

.aym-drawer__foot {
  text-align: center;
  padding-top: 4rem;
  align-items: center;
  margin-top: auto;
  font-size: 1rem;
  opacity: .9;
  border-top: 1px solid hsl(var(--neutral-0));
}

.aym-drawer__foot a {
  text-align: center;
  align-items: center;
  color: hsl(var(--fg));
  text-decoration: none;
}

.aym-drawer__foot a:hover {
  color: hsl(var(--brand-500));
}

/* Açık durum sınıfı */
.aym-drawer.is-open {
  pointer-events: auto;
}

.aym-drawer.is-open .aym-drawer__overlay {
  opacity: 1;
}

.aym-drawer.is-open .aym-drawer__panel {
  transform: none;
}

/* Akordeon link listeleri (sadece yazı; görsel yok) */
.aym-acc__item {
  border-bottom: 1px solid hsl(var(--neutral-0));
}

.aym-acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  font-size: medium;
  font-weight: 500;
  color: hsl(var(--fg));
  background: none;
  border: 0;
  cursor: pointer;
}

.aym-acc__chev {
  transition: transform var(--acc-speed) var(--acc-ease);
}

.aym-acc__item.is-open .aym-acc__chev {
  transform: rotate(180deg);
}

.aym-acc__item.is-open>.aym-acc__panel {
  max-height: 900px;
  /* içerik uzunluğu kadar yeterli değer */
  opacity: 1;
  visibility: visible;
  transition:
    max-height var(--acc-open-speed) var(--acc-ease),
    opacity 260ms ease,
    visibility 0s;
}

.aym-acc__panel {
  overflow: hidden;
  max-height: 0;
  /* kapalıyken 0 */
  opacity: 0;
  visibility: hidden;
  transition:
    max-height var(--acc-close-speed) var(--acc-ease),
    opacity 260ms ease,
    visibility 0s linear var(--acc-close-speed);
}

.aym-acc__links {
  list-style: none;
  margin: 0;
  padding: 6px 15px;
}

.aym-acc__links a {
  font-size: small;
  display: block;
  padding: 7px 6px;
  color: #dfe3e7;
  text-decoration: none;
}

.aym-acc__links a:hover {
  background: rgba(255, 255, 255, .06);
}

/* Body kilitleme sınıfı (çekmece açıkken scroll kapansın) */
.no-scroll {
  overflow: hidden;
}

.header,
.aym-bar {
  position: relative;
}

.aym-item {
  position: static;
}

.aym-flags--mobile {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 8px;
}

.aym-flags--mobile a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.aym-flags--mobile img {
  width: 20px;
  height: 15px;
  display: block;
}

.aym-flags--mobile a:hover {
  background: rgba(255, 255, 255, .06);
}

/* === 1080px ve altı: hamburger görünür, logo ortalı, desktop menüler kapalı === */
@media (max-width:1160px) {

  .aym-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);

    padding-right: 10rem;
    margin: 0;
    z-index: 2;
    line-height: 0;
  }

  /* Masaüstü menü ve üst util satırı gizle */
  .aym-menu,
  .aym-utils,
  .aym-nav,
  .aym-topbar {
    display: none !important;
  }

  /* Her ihtimale karşı mega panelleri kapat (desktop davranışı devre dışı) */
  .aym-item .aym-mega {
    display: none !important;
  }

  .aym-bar {
    position: relative;
    padding-top: 3rem;
  }

  .aym-brand img,
  .aym-brand svg {
    display: block;
    height: clamp(55px, 10vw, 72px);
    width: auto;
  }

  .aym-burger {
    position: absolute;
    right: 16px;
    /* ihtiyaca göre arttır/azalt */
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: block;
    margin-left: auto;
  }

  .aym-mega {
    left: var(--pad);
    right: var(--pad)
  }

  .aym-mega__grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr))
  }
}

@media (max-width: 415px) {

  .aym-drawer__panel,
  .aym-drawer__close,
  .aym-drawer__body,
  .aym-item,
  .aym-drawer__foot,
  .aym-card .logo-only {
    width: 100%;
    /* %100 yerine %75 olacak */
  }
}

/* Mega menüde sadece logo olan kart */
.aym-card.logo-only {
  justify-content: center;
  align-items: center;
  padding: 5rem;
  background: none;
  box-shadow: none;
}

.aym-card.logo-only img {
  max-width: 100%;
  /* istediğin boyut */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* header and */



/* intro */
.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: hsl(var(--bg));
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.content {
  padding: 50px;
  background-color: hsl(var(--fg));
  text-align: center;
}

#product-info {
  position: absolute;
  display: flex;
  /* Yan yana dizmek için */
  align-items: center;
  /* Dikey ortalama */
  gap: 15px;
  /* Aralarına boşluk */
  background: rgba(0, 0, 0, 0.7);
  color: hsl(var(--fg));
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  /* gizliyken tıklanmasın */

}

#product-info {
  pointer-events: none;
}

#product-info.is-visible {
  pointer-events: auto;
}

#product-btn {
  padding: 5px 12px;
  font-size: 20px;
  background-color: hsl(var(--brand-warm-1));
  color: hsl(var(--fg));
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Modal stil */

#modal {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

#modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: hsl(var(--fg));
  padding: 20px 30px;
  border-radius: 10px;
  position: relative;
  max-width: 600px;
  text-align: center;
}

#modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.hidden {
  display: none;
}

#modal-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
}

#modal-content h2 {
  margin-bottom: 10px;
}


/* Telefon + Tablet (≤1024px): intro’da sadece video görünsün */
@media (max-width: 1024px) {
  .intro #product-info {
    display: none !important;
  }

  .intro #modal {
    display: none !important;
  }
}

/* intro and */


/* Models */
/* Bölümü ortala */
.models {
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 80px) clamp(16px, 4vw, 40px);
}

/* Sahnede sadece absolute yerleşim kullanıyoruz */
.model-container {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: clamp(300px, 45vh, 500px);
  overflow: visible;
}

/* ----- Kart (konumlandırıcı) ----- */
.model {
  padding-top: 55px;
  /* genişliği kart belirlesin; img %100 ile doldurur */
  width: clamp(180px, 70vw, 360px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  transform-origin: center top;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform var(--dur-glide) var(--ease-glide);
  will-change: transform;
  backface-visibility: hidden;
  z-index: 1;
}

/* Tablet & Desktop genişlikleri */
@media (max-width: 1024px) {

  #prev,
  #next {
    top: 22%;
  }

  /* tablet: çok yukarı kaçmasın */

  /* 3) Discover link gizle */
  .models-head .models-link {
    display: none !important;
  }

  /* 2) DOWNLOAD gizle (outline buton) */
  .cta-row .cta-outline {
    display: none !important;
  }

  /* 1 + 4) EXPLORE biraz küçülsün ve daha yüksek olsun */
  .cta-row .cta-solid {
    font-size: clamp(12px, 1.6vw, 14px);
    /* küçült */
    padding: 16px 16px;
    /* ↑ yükseklik artsın (dikey padding) */
    border-radius: 8px;
    /* dokunma konforu */
  }

  /* Satır boşluğunu kompakt tut */
  .cta-row {
    gap: 12px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* DOWNLOAD ve discover zaten tablet kuralıyla gizlenmiş olacak */

  /* EXPLORE daha da kompakt fakat yüksek */
  .cta-row .cta-solid {
    font-size: clamp(12px, 3.6vw, 14px);
    padding: 18px 14px;
    /* ↑ biraz daha yüksek, yanlar dar */
  }

  /* Tek buton ortada */
  .cta-row {
    justify-content: center;
  }
}



@media (min-width: 768px) {
  .model {
    width: clamp(220px, 45vw, 420px);
  }
}

@media (min-width: 1200px) {
  .model {
    width: clamp(260px, 28vw, 520px);
  }
}

@media (min-width: 1600px) {
  .model {
    width: clamp(300px, 24vw, 560px);
  }
}

/* Görsel: kart genişliğini doldur, oran koru */
.model img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
  pointer-events: none;
  /* yatay mobilde güvenlik */
}

/* Durum sınıfları */
.model.active {
  width: 55%;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  transform: translate3d(-50%, 0, 0) scale(1.08);
  opacity: 1;
  filter: none;
  z-index: 3;
}

.model.is-near {
  filter: blur(1.2px);
  opacity: .75;
  z-index: 2;
}

/* Uzak kartları tamamen gizle → hayalet yok */
.model.far {
  opacity: 0 !important;
  visibility: hidden !important;
  filter: none !important;
  pointer-events: none;
}

/* Hover mikro hareketi */
.model:hover {
  transform: translate3d(-50%, 0, 0) scale(1.10);
  transition: transform var(--dur-hover) var(--ease-hover);
}

/* Geçiş esnasında hover hızını kilitle → hepsi aynı hızda kayar */
.models.is-gliding .model,
.models.is-gliding .model:hover {
  transition: transform var(--dur-glide) var(--ease-glide) !important;
  /* filter/opacity’ye dokunmuyoruz → blur kalır */
}

/* Başlık/metin & CTA */
.model h3 {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  margin: 10px 0 6px;
}

.model p {
  font-size: clamp(.9rem, 1.6vw, 1rem);
  margin: 0 0 14px;
}

.model-buttons {
  display: none;
  gap: clamp(25px, 5vw, 30px);
  justify-content: center;
}

.model.active .model-buttons {
  display: flex;
}

.controls {
  margin-top: clamp(40px, 3vh, 28px);
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.nav-btn {
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: none;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  cursor: pointer;
}

/* ===== Models header row ===== */
.models-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 clamp(16px, 3vw, 28px);
}

.models-title {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 5;
  font-weight: 750;
  letter-spacing: .02em;
  color: hsl(var(--neutral-900));
  margin: 0;
}

/* Discover all models link */
.models-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .02em;
  color: hsl(var(--neutral-900));
  font-size: clamp(12px, 1.6vw, 16px);
  padding-right: 2px;
  /* küçük denge */
  outline: none;
}

.models-link .arr {
  display: inline-block;
  margin-left: 10px;
  transition: transform .2s ease;
}

.models-link:hover .arr,
.models-link:focus-visible .arr {
  transform: translateX(6px);
}

/* Alttaki çizgi */
.models-link::after {
  content: "";
  display: block;
  height: 2px;
  width: clamp(120px, 14vw, 220px);
  background: hsl(var(--neutral-900));
  margin-top: 12px;
}

/* Küçük ekranlarda başlık ve link alt alta gelsin */
@media (max-width: 768px) {
  .models-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .models-link::after {
    width: clamp(120px, 40vw, 180px);
  }
}


/* ====== Küçük ekranlarda kart modu (≤768px) ====== */
/* —— Telefon/Tablet düzeni —— */
@media (max-width: 768px) {

  /* Komşuları gizle – tek kart modu */
  .model.is-near,
  .model.far {
    opacity: 0 !important;
    visibility: hidden !important;
    filter: none !important;
    pointer-events: none;
  }

  /* Aktif kartı sahnenin tam ortasına yerleştirebilmek için
     top:50% + translateY(-50%) kullanacağız (Y offset’i CSS var ile gelir) */
  .model {
    width: 100% !important;
    max-width: 440px;
    /* “biraz büyük” */
    top: 50%;
    /* Y ofsetini JS’te var(--y) ile okuyacağız */
  }

  .model.active {
    background: hsl(var(--fg));
    border-radius: 16px;
    padding: 24px 16px 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  }

  /* Görseli kart içinde biraz büyüt; merkezli kalsın */
  .model img {
    width: min(86vw, 400px);
    height: auto;
    display: block;
    margin-inline: auto;
    object-fit: contain;
    transform-origin: center;
  }

  .model.active img {
    transform: scale(1.06);
    transition: transform var(--dur-glide) var(--ease-glide);
  }

  /* Telefon ekranında alt oklar görünmesin */
  .controls {
    display: none !important;
  }
}

/* CTA – base */
.btn {
  font-weight: 700;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

/* Explore (dolu) */
.btn.explore {
  background: hsl(var(--brand-500));
  /* sıcak turuncu */
  color: hsl(var(--fg));
  border: 1px solid hsl(var(--brand-600));
  box-shadow: 0 2px 0 rgba(0, 0, 0, .05);
}

.btn.explore:hover {
  background: hsl(var(--brand-300));
  border-color: hsl(var(--brand-300));
  box-shadow: 0 6px 20px rgba(255, 162, 0, .25);
}

.btn.explore:active {
  transform: translateY(1px);
}

/* Brochure (outline) */
.btn.brochure {
  background: hsl(var(--fg));
  color: hsl(var(--neutral-920));
  border: 1px solid hsl(var(--neutral-920));
}

.btn.brochure:hover {
  background: rgba(0, 0, 0, .06);
}


/* ====== TEMERARIO HERO ====== */
.models {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px);
}

.models-hero {
  text-align: center;
  margin-bottom: clamp(10px, 3.4vw, 28px);
}

.brand-logo {
  letter-spacing: .55em;
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 26px);
  opacity: .9;
}

.hero-title {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin: .4em 0 0;
  font-weight: 600;
  line-height: 1;
  font-size: clamp(36px, 8vw, 88px);
  letter-spacing: 1px;
  color: hsl(var(--neutral-700txt));
}

/* — Araç sahnesi — mevcut .model-container kalıyor; yüksekliği biraz büyütelim */
.model-container {
  min-height: clamp(420px, 46vw, 560px);
  overflow: visible;
}

/* Kart genişliği: merkez çok büyük, komşular dev ama soluk */
.model {
  width: clamp(320px, 58vw, 1100px);
}

@media (min-width:1200px) {
  .model {
    width: clamp(520px, 60vw, 1200px);
  }
}

.model img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.model.active {
  transform: translate3d(-50%, 0, 0) scale(1);
  opacity: 1;
  filter: none;
  z-index: 3;
}

.model.is-near {
  transform: translate3d(-50%, 0, 0) scale(1.04);
  filter: blur(6px);
  opacity: .18;
  z-index: 1;
}

.model.far {
  opacity: 0 !important;
  visibility: hidden !important;
  filter: none !important;
  pointer-events: none;
}

/* — Yan altıgen oklar: mevcut #prev / #next'i dönüştür — */
/* Renkleri buradan yönet (istersen değiştir) */


/* — Altıgen oklar: gerçek altıgen çerçeve — */
#prev,
#next {
  --size: clamp(44px, 4.6vw, 64px);
  /* buton boyutu */
  --ring: 1px;
  /* çerçeve kalınlığı (artır/azalt) */
  --hex-stroke: hsl(var(--bg))000;
  /* çerçeve rengi */
  --hex-fill: hsl(var(--fg));
  /* iç dolgu rengi */
  position: absolute;
  top: 18%;
  /* konumun senin sayfanda neyse onu kullan */
  width: var(--size);
  height: var(--size);
  padding: 0;
  border: none;
  /* dikdörtgen border YOK */
  background: var(--hex-stroke);
  /* dış halka (stroke) */
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  /* altıgen */
  cursor: pointer;
  z-index: 5;
  transition: transform .2s ease, filter .2s ease;
}

/* soldaki/sağdaki konum */
#prev {
  left: max(28px, 3vw);
}

#next {
  right: max(28px, 3vw);
}

/* İç dolgu: daha küçük bir altıgen ile “halka”yı oluştur */
#prev::before,
#next::before {
  content: "";
  position: absolute;
  inset: var(--ring);
  /* kalınlığı buradan kontrol edersin */
  background: var(--hex-fill);
  clip-path: inherit;
  /* aynı altıgen kırpma */
}

/* Ok işareti (metin) */
#prev::after,
#next::after {
  content: "";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1;
  color: var(--hex-stroke);
  /* okun rengi */
}

/* Karakterleri ata */
#prev::after {
  content: "‹";
}

#next::after {
  content: "›";
}

/* Hover mikro animasyon */
#prev:hover,
#next:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* (Opsiyonel) Tablet/Mobilde gizleme senin mevcut kurallarınla aynı kalsın */
@media (max-width: 768px) {

  #prev,
  #next {
    display: none !important;
  }
}


/* — Model adı + altın çizgi — */
.models .model-label {
  padding-top: 6rem;
  text-align: center;
}


.models .model-label span {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  /* çizgi ile yazı arası */
}

/* eski kuralları ezer: centering = left:50% + translateX(-50%) */
.models .model-label span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 12vw, 140px);
  /* kısa altın çizgi */
  height: 3px;
  background: hsl(var(--brand-500));
}

/* — CTA butonları — */
.cta-row {
  display: flex;
  gap: clamp(12px, 3vw, 24px);
  justify-content: center;
  align-items: center;
  margin-top: clamp(12px, 3vw, 22px);
  padding-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  padding: clamp(12px, 1.6vw, 16px) clamp(18px, 3vw, 24px);
  border-radius: 50px;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cta-solid {
  background: hsl(var(--brand-500));
  color: hsl(var(--fg));
  border: 1px solid hsl(var(--brand-warm-1));
  box-shadow: 0 8px 24px rgba(247, 163, 53, 0.37);
}

.cta-solid:hover {
  background-color: rgb(255, 255, 255);
  border-color: hsl(var(--bg))000;
  color: hsl(var(--neutral-900));
  transform: translateY(-1px);
}

.cta-outline {
  background: hsl(var(--fg));
  color: hsl(var(--neutral-900));
  border: 1px solid hsl(var(--neutral-900));
  box-shadow: 0 8px 24px rgba(247, 163, 53, 0.37);

}

.cta-outline:hover {
  background: hsl(var(--brand-500));
  color: hsl(var(--fg));
  border: 1px solid hsl(var(--brand-warm-1));

  transform: translateY(-1px);
}

.btn .arrow {
  font-size: 1.2em;
  line-height: 1;
}

.btn .dl {
  font-size: 1.1em;
}

/* — Mobil: yan okları gizle, tek kart odağı — */
@media (max-width: 768px) {

  #prev,
  #next {
    display: none !important;
  }

  .model {
    width: min(92vw, 560px);
  }

  .model.is-near,
  .model.far {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .model-container {
    min-height: 480px;
  }
}

/* === SAFE OVERRIDES (do not remove) === */
/* Ensure active card is large (override legacy width:55%) */
.models .model.active {
  width: clamp(320px, 58vw, 1100px);
}

@media (min-width:1200px) {
  .models .model.active {
    width: clamp(520px, 60vw, 1200px);
  }
}

/* Unify neighbor (is-near) look: big but blurred & faint */
.models .model.is-near {
  transform: translate3d(-50%, 0, 0) scale(1.04);
  filter: blur(6px);
  opacity: .18;
  z-index: 1;
}

/* Keep far items fully hidden to avoid ghosting (in case older rules differ) */
.models .model.far {
  opacity: 0 !important;
  visibility: hidden !important;
  filter: none !important;
  pointer-events: none;
}

/* Models and*/



/* ===== card & description ===== */
.features {
  padding-inline: 24px;
  /* sağ-sol */
  padding-block-start: clamp(48px, 8vw, 120px);
  /* üst */
  padding-block-end: clamp(12px, 2.5vw, 32px);
  /* alt  */
  background: hsl(var(--bg));
  /* istersen sil: arka plan koyu */
  color: #eaeaea;
  /* koyu zeminde açık yazı */
  position: relative;
  /* önemli: child absolute bu bölüme göre hizalansın */
  overflow: visible;
  /* overlay’i kırpmasın */
}


.feature {
  max-width: 1200px;
  margin: 0 auto clamp(56px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  /* solda metin biraz geniş */
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  position: relative;
}

.feature.is-reverse {
  grid-template-columns: 1fr 1.1fr;
}

.feature.is-reverse .feature__content {
  order: 2;
}

.feature.is-reverse .feature__media {
  order: 1;
}

.feature__eyebrow {
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
  margin: 0 0 10px;
}

.feature__title {
  font-size: clamp(26px, 4.2vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .01em;
  margin: 0 0 16px;
}

.feature__lead {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.65;
  margin: 0;
}

.feature__lead strong {
  color: hsl(var(--fg));
}

/* koyu zeminde vurgular */

/* KAPSAYICI kırpsın (kesin yuvarlak köşe) */
/* Kırpma & yuvarlak köşe: yeterli olan minimum */
.feature__media {
  margin: 0;
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  background: hsl(var(--bg));
  clip-path: inset(0 round 22px);
  /* ekstra güvence */
}

.feature__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  /* köşeyi üstten miras al */
  box-shadow: none;
  object-fit: contain;
  /* istersen contain */
}



/* Mobil + Tablet: her koşulda alt alta sıralansın (reverse etkisiz) */
@media (max-width: 1024px) {

  .feature,
  .feature.is-reverse {
    grid-template-columns: 1fr !important;
    grid-auto-flow: row;
    align-items: start;
    justify-items: stretch;
    gap: clamp(16px, 4vw, 28px);
  }

  /* Reverse’te verilen order'ları sıfırla */
  .feature__content,
  .feature__media,
  .feature.is-reverse .feature__content,
  .feature.is-reverse .feature__media {
    order: 0 !important;
    /* DOM sırası: önce metin, sonra görsel */
  }


}


/* Tablet + telefon: altta ekstra nefes payı ver, görseli ekrana sığdır */
@media (max-width: 1024px) {
  .features {
    /* sadece altı büyüt: 56px–120px arası, ekran yüksekliğine göre ölçeklenir */
    padding-block-end: clamp(56px, 12vh, 120px);
  }

  .feature__media img {
    /* görsel ekranı taşmasın */
    object-fit: contain;
  }
}

/* Daha küçük telefonlar için biraz daha esnek ol */
@media (max-width: 600px) {
  .features {
    padding-block-end: clamp(64px, 16vh, 140px);
  }


}

/* Son kartta ekstra boşluk garantisi (opsiyonel, istersen ekle) */
@media (max-width: 1024px) {
  .feature:last-child {
    margin-bottom: 0;
  }

  .features::after {
    content: "";
    display: block;
    height: clamp(32px, 8vh, 80px);
    /* sayfa sonuna yumuşak bir tampon */
  }
}

/* ≤1024px: köşeleri zorunlu uygula (container + img) */
@media (max-width: 1024px) {
  .feature__media {
    margin: 0;
    display: block;
    position: relative;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: hsl(var(--bg));
    /* bazı tarayıcılarda güvence: */
    clip-path: inset(0 round 22px);
    -webkit-clip-path: inset(0 round 22px);
  }

  .feature__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit !important;
    /* köşeyi miras al */
    box-shadow: none;
    object-fit: contain;
    /* istersen contain */
  }
}


/* === Features text reveal — BOLD ayar === */

/* Başlangıç: görünür ama belirgin şekilde aşağıda ve soluk */
#features .feature__content {
  transition: transform var(--feat-dur) var(--feat-ease),
    opacity var(--feat-dur) var(--feat-ease);
  will-change: transform, opacity;
}

#features .feature__content.reveal-prep {
  transform: translateY(var(--feat-shift));
  opacity: var(--feat-opacity-start);
}

/* Görünür olunca */
#features .feature__content.reveal-in {
  transform: none;
  opacity: 1;
}

/* Hafif mikro-stagger (isteğe bağlı ama hoş durur) */
#features .feature__content>* {
  transition: transform var(--feat-dur) var(--feat-ease),
    opacity var(--feat-dur) var(--feat-ease);
  transform: translateY(calc(var(--feat-shift) * .55));
  opacity: var(--feat-opacity-start);
}

#features .feature__content.reveal-in>* {
  transform: none;
  opacity: 1;
}

#features .feature__content.reveal-in .feature__eyebrow {
  transition-delay: .04s;
}

#features .feature__content.reveal-in .feature__title {
  transition-delay: .09s;
}

#features .feature__content.reveal-in .feature__lead {
  transition-delay: .14s;
}

/* Erişilebilirlik: hareket azaltıldıysa animasyon kapansın */
@media (prefers-reduced-motion: reduce) {

  #features .feature__content,
  #features .feature__content>* {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* ===== Lightbox (sadece #features alanını kaplasın) ===== */
#features {
  position: relative;
}

/* zaten var ama garanti olsun */

#features .lb {
  position: absolute;
  /* sayfanın tamamını değil, sadece #features'i kaplar */
  inset: 0;
  /* top/right/bottom/left:0 */
  display: none;
  /* kapalıyken görünme */
  place-items: center;
  background: rgba(0, 0, 0, .72);
  z-index: 50;
  /* bölümdeki her şeyin üstünde */
  opacity: 0;
  transition: opacity .22s ease;
}

#features .lb.is-open {
  display: grid;
  opacity: 1;
}

/* Görsel + X butonunu birlikte konumlandırmak için çerçeve */
#features .lb__frame {
  position: relative;
  max-width: min(92%, 1600px);
  max-height: 90%;
}

/* Görsel */
#features .lb__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: hsl(var(--bg));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

/* Kapatma butonu: görselin sağ üst köşesi */
#features .lb__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .5);
  color: hsl(var(--fg));
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

#features .lb__close:hover {
  transform: scale(1.06);
  background: rgba(0, 0, 0, .65);
  border-color: rgba(255, 255, 255, .6);
}

/* Lightbox genel boyut düğmeleri */
#features .lb {
  --lb-w: clamp(360px, 52%, 1080px);
  /* genişlik: 68% civarı */
  --lb-h: clamp(280px, 52vh, 84vh);
  /* yükseklik: 68vh civarı */
}

#features .lb__frame {
  max-width: var(--lb-w);
  max-height: var(--lb-h);
}

/* Mobilde yine genişçe olsun */
@media (max-width: 768px) {
  #features .lb {
    --lb-w: 92%;
    --lb-h: 80vh;
  }
}

#features .lb {
  --lb-y: -90px;
}

#features .lb__frame {
  transform: translateY(var(--lb-y));
}

/* <1024px: lightbox görünmesin, img tıklanabilir görünmesin */
@media (max-width: 1024px) {
  #features .lb {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .feature__media img {
    cursor: default !important;
  }
}

/* ===== card & description and===== */


/* ============ about categories ============ */
.about {
  /* tam genişlik bir bölüm; istersen üst/alt margin/padding ekleyebilirsin */
  padding: 0;
  background: hsl(var(--bg));
  /* sayfa ile kontrast için */
  color: hsl(var(--fg));
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 kart yan yana */
  gap: 0;
  /* görselde boşluk yoktu; isterse artır */
}

/* ============ CARD ============ */
.about__card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100dvh;
  height: 100dvh;
  background: var(--bg) center/cover no-repeat;
  overflow: hidden;
  isolation: isolate;
  /* overlay’leri düzgün katmanla */
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  transition: filter .25s ease, transform .25s ease;
  background: none !important;
  --zoom: 1.10;
}

.about__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* görseli CSS değişkeninden oku */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: var(--about-bg);
  transform: scale(1);
  transform-origin: center center;
  transition: transform .50s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

/* Sadece #about içinde geçerli olsun diye yerel scope verdim */
#about .about__card:nth-child(1) {
  --about-bg: url("/assets/images/home/about/video.jpg");
}

#about .about__card:nth-child(2) {
  --about-bg: url("/assets/images/home/about/katalog.jpg");
}

#about .about__card:nth-child(3) {
  --about-bg: url("/assets/images/home/about/galeri.jpg");
}


.about__card:hover::before {
  transform: scale(var(--zoom));
}

.about__card:hover {
  filter: brightness(1.5);
  /* hover’da hafif aydınlanma */
}

/* Üst sol “about” etiketi */
.about__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, .15);
}

/* Alttaki metin alanı */
.about__content {
  position: absolute;
  inset: auto 24px 24px 24px;
  /* bottom-left */
  z-index: 3;
  max-width: 56ch;
  display: grid;
  gap: 10px;
  pointer-events: none;
  /* sadece buton etkileşimli */
}

.about__title {
  font-size: clamp(26px, 5vw, 70px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .01em;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.about__desc {
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.6;
  margin: 0 0 10px 0;
  color: #e8e8e8;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}

/* CTA buton; hover’da belirsin */
.about__btn {
  justify-self: start;
  pointer-events: auto;
  /* buton tıklanabilir */
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .55);
  color: hsl(var(--fg));
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .25);
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease, background .2s ease, border-color .2s ease;
}

.about__card:hover .about__btn {
  opacity: 1;
  transform: translateY(0);
}


/* Alt gölge/karanlık katman */
.about__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.42) 55%,
      rgba(0, 0, 0, 0.70) 100%);
  transition: opacity .25s ease;
}

.about__card:hover .about__scrim {
  opacity: .85;
  /* metin okunurluğunu koru */
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    /* alt alta */
  }

  .about__card {
    min-height: 80svh;
    height: auto;
    border-radius: 0;
    /* mobilde tam-bleed görünüm isteğe bağlı */
  }

  /* Mobilde hover yok, buton hep görünür olsun */
  @media (hover: none) {
    .about__btn {
      opacity: 1;
      transform: none;
    }
  }
}

@media (hover: none) {
  .about__card::before {
    transform: none !important;
  }
}

/* ============ about categories and=========== */



/* ============= CONTACT SECTION ============= */
.contact {
  background: hsl(var(--bg)) !important;
  color: hsl(var(--fg));
  padding-block: clamp(48px, 8vw, 96px);
  block-size: auto;
  /* içerik kadar */
  overflow-x: hidden;
  /* yatay kaydırmayı kapat */
}

/* Taşma korumaları */
.contact,
.contact * {
  min-width: 0;
}

.contact * {
  box-sizing: border-box;
}

#contactFormMount img,
#contactInfoMount img,
#contactFormMount svg,
#contactInfoMount svg {
  max-width: 100%;
  height: auto;
}

.contact__container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Başlık: ortalı */
.contact__title {
  text-align: center;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: .3px;
  font-weight: 700;
  margin: 0 0 28px;
  position: relative;
  color: hsl(var(--fg));
}

.contact__title::after {
  content: "";
  display: block;
  width: clamp(60px, 10vw, 110px);
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg,
      hsl(var(--brand-700)) 0%,
      hsl(var(--brand-500)) 60%,
      hsl(var(--brand-300)) 100%);
  border-radius: 2px;
  opacity: .9;
}

/* 70 / 30 grid */
.contact__shell {
  display: grid;
  grid-template-columns: 7fr 3fr;
  /* %70 / %30 */
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

.contact__shell>* {
  min-width: 0;
}

/* Sol panel (form alanı) */
.contact__main {
  background: hsl(var(--panel));
  border: 1px solid hsl(var(--border-invert) / .7);
  border-radius: 14px;
  padding: clamp(18px, 2.4vw, 28px);
  box-shadow:
    0 1px 0 hsl(var(--overlay-dim) / .4) inset,
    0 10px 30px hsl(var(--overlay-dim) / .45);
}

/* Alt başlık (form kolonunda) */
.contact__text {
  margin: 0 0 14px;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.45;
  color: hsl(var(--fg-soft));
  position: relative;
}

.contact__text::after {
  content: "";
  display: block;
  width: clamp(44px, 8vw, 80px);
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg,
      hsl(var(--brand-700)) 0%,
      hsl(var(--brand-500)) 60%,
      hsl(var(--brand-300)) 100%);
  border-radius: 2px;
  opacity: .85;
}

/* Sağ panel */
.contact__side {
  background: hsl(var(--panel));
  border: 1px solid hsl(var(--border-invert) / .7);
  border-radius: 14px;
  padding: clamp(16px, 2vw, 24px);
  box-shadow:
    0 1px 0 hsl(var(--overlay-dim) / .35) inset,
    0 10px 24px hsl(var(--overlay-dim) / .4);
}

/* Sağ panel başlığı (h4) */
.side__title {
  margin: 0 0 12px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.4;
  color: hsl(var(--fg-soft));
  font-weight: 700;
  letter-spacing: .2px;
  position: relative;
}

.side__title::after {
  content: "";
  display: block;
  width: clamp(38px, 7vw, 70px);
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg,
      hsl(var(--brand-600)) 0%,
      hsl(var(--brand-500)) 60%,
      hsl(var(--brand-300)) 100%);
  border-radius: 2px;
  opacity: .85;
}

/* Sağ panel içerik düzeni (JS ile eklenecek) */
#contactInfoMount .info {
  display: grid;
  gap: 14px;
}

#contactInfoMount .info__card {
  background: hsl(var(--neutral-850));
  border: 1px solid hsl(var(--border-invert) / .55);
  border-radius: 12px;
  padding: 14px;
}

#contactInfoMount .info__title {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--fg-soft));
  margin-bottom: 8px;
}

#contactInfoMount .info__item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  padding-block: 6px;
  color: hsl(var(--fg));
  font-size: .94rem;
  opacity: .92;
}

#contactInfoMount .info__item a {
  color: hsl(var(--fg));
  text-decoration: none;
  transition:
    color 350ms var(--ease-hover),
    border-color 350ms var(--ease-hover),
    background-color 350ms var(--ease-hover);
}


#contactInfoMount .info__item a:hover {
  color: hsl(var(--brand-300));
  text-decoration: none;
}

#contactInfoMount .social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

#contactInfoMount .social a {
  inline-size: 38px;
  block-size: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid hsl(var(--border-invert) / .55);
  background: hsl(var(--neutral-850));
  transition: transform var(--dur-hover) var(--ease-hover),
    border-color var(--dur-hover) var(--ease-hover);
}

#contactInfoMount .social a:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--brand-400));
}

/* --------- FORM TEMELLERİ (JS ile eklenecek alan içindeki elementler) --------- */

#contactFormMount {
  margin-top: 5px;
}

#contactFormMount form {
  display: grid;
  margin-inline: auto;
  max-width: 720px;
  gap: clamp(8px, 1.2vw, 14px);
}

#contactFormMount .form__row {
  display: grid;
  gap: 8px;
}


#contactFormMount label {
  font-size: .92rem;
  color: hsl(var(--fg-soft));
}

#contactFormMount input,
#contactFormMount select,
#contactFormMount textarea {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid hsl(var(--border-invert) / .55);
  background: hsl(var(--neutral-850));
  color: hsl(var(--fg));
  outline: none;
  transition: border-color var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover),
    background var(--dur-hover) var(--ease-hover);
}

#contactFormMount textarea {
  min-height: 132px;
  resize: vertical;
}

#contactFormMount input:hover,
#contactFormMount select:hover,
#contactFormMount textarea:hover {
  border-color: hsl(var(--brand-400) / .7);
}

#contactFormMount form,
#contactFormMount .form__row,
#formAlert {
  max-width: 680px;
  margin-top: clamp(10px, 1.6vw, 16px);

}

#contactFormMount .form__row:last-child {
  margin-bottom: clamp(10px, 1.6vw, 16px);
}

#contactFormMount input:focus-visible,
#contactFormMount select:focus-visible,
#contactFormMount textarea:focus-visible {
  border-color: hsl(var(--brand-500));
  box-shadow: 0 0 0 4px hsl(var(--brand-500) / .18);
  background: hsl(var(--neutral-820));
}

/* Help / error */
#contactFormMount .form__hint {
  font-size: .82rem;
  color: hsl(var(--fg-muted));
}

#contactFormMount .field-error {
  font-size: .82rem;
  color: hsl(var(--brand-warm-2));
}

/* Hata sınıfı */
#contactFormMount .is-invalid {
  border-color: hsl(var(--brand-warm-2));
  box-shadow: 0 0 0 4px hsl(var(--brand-warm-2) / .15);
}

/* Butonlar */
#contactFormMount .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid hsl(var(--brand-500));
  background: linear-gradient(180deg,
      hsl(var(--brand-500)) 0%,
      hsl(var(--brand-600)) 100%);
  color: hsl(var(--primary-contrast));
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover),
    filter var(--dur-hover) var(--ease-hover);
}

#contactFormMount .btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 24px hsl(var(--brand-500) / .35);
}

#contactFormMount .btn:active {
  transform: translateY(1px) scale(.99);
}

#contactFormMount .btn:focus-visible {
  box-shadow: 0 0 0 4px hsl(var(--brand-300) / .28);
}

/* İkincil buton */
#contactFormMount .btn--ghost {
  background: transparent;
  border-color: hsl(var(--border-invert) / .6);
  color: hsl(var(--fg));
}

#contactFormMount .btn--ghost:hover {
  background: hsl(var(--neutral-850));
}

#contactInfoMount .addr-link {
  white-space: pre-line;
  line-height: 2;
  display: block;
}

/* --------- Responsive: 1000px ve altı tek sütun, sağ panel altta --------- */
@media (max-width: 1000px) {
  .contact__shell {
    grid-template-columns: 1fr;
    /* tek sütun */
    gap: clamp(14px, 3vw, 22px);
  }

  .contact__main {
    order: 1;
  }

  .contact__side {
    order: 2;
    border-top: 1px solid hsl(var(--border-invert) / .65);
    padding: clamp(14px, 3.5vw, 24px);
  }

  .contact__title {
    margin-bottom: clamp(18px, 4vw, 26px);
  }

  .contact__text {
    font-size: clamp(.95rem, 3.5vw, 1.05rem);
    margin: 0 0 10px;
  }

  #contactFormMount {
    margin-top: 8px;
  }

  .side__title {
    font-size: clamp(.95rem, 3.4vw, 1.05rem);
    margin: 0 0 10px;
  }

  .side__title::after {
    width: clamp(34px, 10vw, 60px);
    margin-top: 6px;
  }

  .contact__container {
    width: min(100%, 92vw);
    padding-inline: 0;
  }
}

@media (min-width: 1000px) {
  .contact__shell {
    align-items: stretch;
    /* start → stretch */
  }

  .contact__main,
  .contact__side {
    height: 100%;
    /* grid satır yüksekliğini doldur */
    align-self: stretch;
    /* olası tarayıcı farkları için güvence */
    display: flex;
    /* içerik dikey akış */
    flex-direction: column;
  }
}

/* Tipografi kontrastı mikro ayarları */
.contact p,
.contact li {
  color: hsl(var(--fg-soft));
}

#contactInfoMount .social a svg {
  width: 20px;
  height: 20px;
  color: #ffff;
}

#contactFormMount .form__hint {
  display: none;
}

#contactFormMount form:not(.is-pristine) .form__row:focus-within .form__hint {
  display: block;
}

#contactInfoMount .social a {
  color: hsl(var(--fg));
  /* ikon rengi */
  transition:
    color var(--dur-hover) var(--ease-hover),
    border-color var(--dur-hover) var(--ease-hover),
    background var(--dur-hover) var(--ease-hover),
    transform var(--dur-hover) var(--ease-hover);
}

#contactInfoMount .social a:hover,
#contactInfoMount .social a:focus-visible {
  color: hsl(var(--brand-300));
  /* ikon rengi değişir */
  border-color: hsl(var(--brand-400));
  background: hsl(var(--neutral-820));
  outline: none;
}

/* ===== Contact and =====*/

.bg-block {
  position: relative;
  background-image: url("/assets/images/footer/footer-bg.svg");
  background-position: center;
  background-size: cover;
  min-height: clamp(240px, 40vh, 520px);
  overflow: hidden;
  aspect-ratio: 2213 / 800;
  min-height: auto;
  flex-direction: column;
  display: flex;
  padding-block: clamp(40px, 6vw, 72px);
  isolation: isolate;
}

.bg-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/footer/footer-bg.svg") center / cover no-repeat;
  z-index: -2;
}

.bg-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      hsl(var(--neutral-990) / 0) 0%,
      /* ÜST: siyaha yakın, güçlü */
      hsl(var(--neutral-990) / .38) 55%,
      /* ORTA: yumuşak (yarı saydam) */
      hsl(var(--neutral-990) / 100) 100%
      /* ALT: hiç (tam şeffaf) */
    );
  z-index: -1;
}



/* ============================== Footer  =========================== */


/* ---- yalnızca footer alanını etkiler ---- */
.aym-footer {
  /* çalışma genişliği için kontrol değişkeni */
  --footer-max: 1040px;

  position: relative;
  isolation: isolate;
  /* ::before katmanını güvenle ayır */
  color: hsl(var(--fg));
  background: rgb(0, 0, 0);
  /* siyah taban */
  padding-block: clamp(32px, 5vw, 72px);
  padding-inline: clamp(16px, 3vw, 32px);
  overflow: clip;
  /* taşmaları gizle */
}

/* arka plan efekti (verdiğin değerlerle) */
.aym-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* içerik grid’i */
.aym-footer-grid {
  position: relative;
  z-index: 1;
  /* gradyanın üstüne çıkar */
  width: min(var(--footer-max), 92%);
  max-height: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 50 / 50 */
  gap: clamp(16px, 2vw, 28px);
  /* oranların referans yüksekliği */
}

/* sol ve sağ sütunların iç ızgarası */
.aym-footer-left,
.aym-footer-right {
  display: grid;
  gap: clamp(12px, 1.5vw, 20px);
}

/* Sol: 40 / 30 / 30 (4fr / 3fr / 3fr) */
.aym-footer-left {
  grid-template-rows: 4fr 3fr 3fr;
  max-height: fit-content;
}

/* Sağ: 80 / 20 (4fr / 1fr) */
.aym-footer-right {
  grid-template-rows: 4fr 1fr;
  max-height: fit-content;
}

/* kutuları şimdilik görsel olarak seçilebilir hale getirelim (geliştirme görünümü) */
.left-row,
.right-row {
  background: hsl(var(--overlay-dim) / .08);
  border: 1px solid hsl(var(--overlay-dim) / .16);
  border-radius: 16px;
  padding: clamp(8px, 1vw, 14px);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--amber-500), var(--amber-700));
  border-radius: 2px;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Telefon ve mail eşit genişlik */
  gap: clamp(12px, 1.6vw, 20px);
}


.footer-address {
  max-width: 100%;
}

.aym-footer .footer-contact .footer-block a:hover,
.aym-footer .footer-contact .footer-block a:focus-visible {
  color: #FFA500;
  /* turuncu */
}


/* Alt blok başlıkları (Telefon, Email) */
.footer-block h4 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--fg-100);
}

/* İçerik (numara, mail) */
.footer-block p {
  margin: 0;
  color: var(--fg-60);
  line-height: 1.55;
}

/* Linkler */
.footer-block a {
  color: var(--fg-100);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-block a:hover {
  color: var(--amber-500);
}

.logo-grid {
  display: grid;
  gap: clamp(1rem, 1vw, 10px);
  /* varsayılan: 3x2; geniş ekranda 6 yan yana */
  grid-template-columns: repeat(6, 1fr);
}

/* kare kart */
.logo-card {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  /* tam kare */
  border-radius: 14px;
  background: var(--bg-900);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

/* logo görseli – ortalı, taşma yok */
.logo-card img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: grayscale(28%) contrast(1.05);
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;
  opacity: .95;
}

/* hover – amber kontur + hafif parlama ve logo canlılaşsın */
.logo-card:hover {
  box-shadow: var(--shadow-2), 0 0 0 2px color-mix(in oklab, var(--amber-600) 22%, transparent 78%);
  transform: translateY(-2px);
}

.logo-card:hover img {
  filter: grayscale(0) contrast(1.1);
  transform: scale(1.2);
  opacity: 1;
}

/* Kutu içi düzen: input + buton yan yana */
.catalog-form {
  display: grid;
  grid-template-columns: 1fr auto;
  /* yan yana */
  gap: clamp(10px, 1.2vw, 14px);
  align-items: center;
  max-width: 560px;
  /* kutu çok yayılmasın */
  margin-inline: auto;
  /* ortala */
}

/* input – mevcut footer input stilin zaten var; ufak iyileştirme */
.catalog-form input[type="email"] {
  height: 44px;
  border-radius: 12px;
  font-size: .98rem;
  /* mevcut .aym-footer input stillerin üzerine biner */
}

/* buton – daha önce footer genelinde width:100% vermiştik; burada daralt */
.catalog-form .btn-primary {
  width: auto;
  /* yan yana dar buton */
  padding: 12px 18px;
  /* daha kompakt */
  border-radius: 12px;
  /* Sol 3 ile uyumlu */
  white-space: nowrap;
  /* “Gönder” taşmasın */

  background: linear-gradient(180deg, #FFA500, #FF8A00);
  /* orange → koyu orange */
  color: #fff;
  border: 1px solid #FF9800;
  font-weight: 600;

}

.catalog-form .btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 18px orange;

}


/* İsteğe bağlı açıklama yazısı (varsa) */
.form-hint {
  margin: 10px auto 0;
  max-width: 560px;
  color: var(--fg-60);
  font-size: .92rem;
  text-align: center;
}

.right-row--top {
  /* içindeki .map-card tam doldurabilsin */
  padding: 0;
  /* kenar boşluklarını kaldır, harita gerçek 100% görünsün */
  min-height: 320px;
  /* başlangıç yüksekliği (üst row 4fr zaten daha da büyütür) */
  display: grid;
  /* çocukların 100% boyu doldurması kolaylaşır */
}

.map-card {
  inline-size: 100%;
  block-size: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  /* ebeveynin boyuna eşit */
  border: 0;
}


/* Sağ alt satır: yüksekliği şişirmesin, dikey ortala */
.right-row--bottom.social-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* istersen center/space-between yapabilirsin */
  min-height: 0;
}

.right-row--bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 4rem;
  /* ortala */
}


/* Ikonlar yan yana */
.footer-social {
  justify-content: center;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  /* küçük ekranda taşmasın */
}

/* Kapsül butonlar (tema ile uyumlu) */
.footer-social .ico {
  --size: 3rem;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px;
  background: color-mix(in oklab, var(--bg-900) 88%, rgb(0, 0, 0) 12%);
  box-shadow: var(--shadow-1);
  transition: background .25s ease, border-color .25s ease,
    transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.footer-social .ico svg {
  width: 20px;
  height: 20px;
  color: white;
  opacity: .9;
}

/* hover: amber dolum ve hafif yükselme */
.footer-social .ico:hover {
  background: linear-gradient(180deg, var(--amber-500), var(--amber-700));
  border-color: color-mix(in oklab, var(--amber-600) 60%, rgb(255, 255, 255) 0%);
  box-shadow: 0 6px 18px orange;
  transform: translateY(-1px);
  filter: none;
}

.footer-social .ico:hover svg {
  color: orange;
  opacity: 1;
}

.left-row--2,
.left-row--3 {
  max-height: fit-content;
}

/* İletişim, Markalar, Kataloğu mail ile al → turuncu alt çizgi */
.left-row--1 .footer-title::after,
.left-row--2 .footer-title::after,
.left-row--3 .footer-title::after {
  height: 2px;
  margin-top: 8px;
  border-radius: 2px;
  width: 13%;
  background: linear-gradient(90deg,
      var(--amber-700, #FF6A00),
      var(--amber-500, #FF8A00),
      var(--amber-300, #FFC04D));
}

/* (İsteğe bağlı) 970px altı “Kataloğu mail ile al” başlığı ortalıysa çizgiyi de ortala */

@media (max-width: 970px) {

  .left-row--3 .footer-title {
    text-align: center;
  }

  .left-row--3 .footer-title::after {
    margin-inline: auto;
  }

  .left-row--2 .footer-title {
    text-align: center;
  }

  .left-row--2 .footer-title::after {
    margin-inline: auto;
  }

  .left-row--1 .footer-title {
    text-align: center;
  }

  .left-row--1 .footer-title::after {
    margin-inline: auto;
  }

  .footer-address {
    text-align: center;
    align-items: center;
    justify-items: center;
    place-items: center;

  }

  .aym-footer-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 20px);
  }

  .aym-footer-left,
  .aym-footer-right {
    display: contents;
    /* yalnızca çocuklar layout’a katılsın */
  }

  .left-row--1 {
    order: 1;
  }

  /* İletişim */
  .left-row--2 {
    order: 2;
  }

  /* Markalar */
  .right-row--top {
    order: 3;
  }

  /* Konum (harita) */
  .right-row--bottom {
    order: 4;
  }

  /* Sosyal ikonlar */
  .left-row--3 {
    order: 5;
  }

  /* Katalog mail */

  /* Küçük ekranda içerik rahatlasın */
  .footer-contact {
    grid-template-columns: 1fr;
  }

  /*.logo-grid{ grid-template-columns: repeat(6, 1fr); }  6→3 sütun */
  .catalog-form {
    grid-template-columns: 1fr;
  }

  .catalog-form .btn-primary {
    width: 100%;
  }

  /* 1) "Kataloğu mail ile al" başlığını ortala */
  .left-row--3 .footer-title {
    text-align: center;
  }

  .left-row--3 .footer-title::after {
    margin-inline: auto;
    /* alttaki çizgiyi de ortala */
  }

  /* 2) Markalar ikonlarını 3rem yap */
  .logo-card {
    flex: 0 0 auto;
    /* shrink yok, tek satır */
    width: 3.25rem;
    /* img 3rem, karta hafif pay */
    height: 3.25rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
  }

  .logo-card img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    max-width: none;
    /* önceki % kısıtlarını ez */
    max-height: none;
  }

  .logo-grid {
    display: flex;
    /* grid yerine flex */
    flex-wrap: nowrap;
    /* tek satır */
    gap: 10px;
    justify-content: center;
    /* ekran genişse ortalar */
    padding-bottom: 6px;
    /* scrollbar için nefes */
    /* istersen: scrollbar-gutter: stable both-edges; */
  }

  /* 3) "İletişim / Telefon / Email" metinlerini ortala */
  .left-row--1 {
    text-align: center;
    /* başlık + iç metinler */
  }

  .left-row--1 .footer-title::after {
    margin-inline: auto;
    /* çizgiyi ortala */
  }

  .footer-contact {
    grid-template-columns: 1fr;
    /* tek sütun */
    justify-items: center;
    /* blokları ortada hizala */
  }

  .footer-contact .footer-block {
    text-align: center;
    /* h4 ve link/p metinleri ortalı */
  }


}

/* === 360px ve altı: Markalar = 2 satır, 3 sütun === */
@media (max-width: 360px) {


  /* Flex düzeni kapat, tekrar grid’e dön */
  .logo-grid {
    display: grid;
    /* 3 sütunlu grid */
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
    /* kartları hücre içinde ortala */
    overflow-x: visible;
    /* yatay kaydırma olmasın */
    padding-bottom: 0;
  }

  /* Kart: kare kalsın, hücreyi doldursun */
  .logo-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* kare */
    display: grid;
    place-items: center;
  }

  /* İkon boyutu: 3rem */
  .logo-card img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    max-width: none;
    max-height: none;
  }
}


/* ===== footer and =====*/

.aym-footer-legal {
  background: #000;
  /* siyah zemin */
}

.aym-footer-legal .legal-inner {
  color: #9aa0a6;
  /* gri yazı */
  text-align: center;
  /* tam ortada */
  padding-bottom: 3rem;
}





/* ========================= vizyon&misyon =========================*/

/* VİZYON & MİSYON — STACK DÜZEN (görsel ortada, altında başlık+metin, sonra büyük slogan) */
.vm {
  --container: 80%;
  --gap: 32px;
  --radius: 16px;
  --accent: hsl(var(--brand-500, 36 100% 50%));
  /* sitende brand-500 varsa onu kullanır */
  background: #fff;
  color: #111;
  padding: 40px 20px 56px;
}

.vm__inner {
  max-width: var(--container);
  margin: 0 auto;
}



/* Ana başlık + turuncu çizgi */
.vm__title {
  margin: 0 0 22px;
  text-align: center;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);

  line-height: 1.2;
  /* gradyan metin */
  color: #FFA100;
  /* fallback */
  background: linear-gradient(90deg, #a85e00 0%, #ff9d00 60%, #ffd27a 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vm__title::after {
  content: "";
  display: block;
  height: 4px;
  width: clamp(120px, 30%, 240px);
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #a85e00 0%, #ff9d00 60%, #ffd27a 100%);
}

/* Dikey blok yapısı (her bölüm: görsel → başlık+metin → büyük slogan) */
.vm__section {
  text-align: center;
  margin-bottom: 44px;
}

/* Büyük merkez görsel */
.vm__hero {
  margin: 2rem auto 3rem;
}

.vm__hero img,
.vm__media img {
  /* .vm__media kullanan eski HTML için de stil uygula */
  display: block;
  margin: 0 auto;
  width: 90%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}


/* Metin */
.vm__content {
  max-width: 80%;
  margin: 0 auto;
}

.vm__text {
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  color: #333;

}

/* BÜYÜK SLOGAN — tek renk + sayfa çevirir gibi 3D efekt (scroll ile) */
.vm__slogan {
  margin: 22px auto 0;
  max-width: 100%;
  text-align: center;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: .2px;
  font-size: clamp(36px, 8vw, 88px);

  /* JS günceller */
  --slogan-color: #ff0000;
  /* başlangıç rengi */
  --flip: 0deg;
  /* 3D dönüş */
  --shade: .14;
  /* gölge yoğunluğu (0–.3 arası) */

  /* Tek renk (tüm satırlar aynı anda) */
  -webkit-text-fill-color: var(--slogan-color);
  color: var(--slogan-color);

  /* 3D “page-turn” hissi */
  transform-origin: center bottom;
  transform: perspective(1000px) rotateX(var(--flip)) translateZ(0);

  /* hafif derinlik */
  text-shadow: 0 14px 28px rgba(0, 0, 0, var(--shade));

  will-change: transform, color, -webkit-text-fill-color, text-shadow;
  position: relative;
}

/* küçük ekranda tipografi */
@media (max-width: 720px) {
  .vm__slogan {
    font-size: clamp(28px, 9vw, 56px);
  }
}




/* Görsel altı küçük slogan (figcaption) — opsiyonel */
.vm__caption {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.4;
  color: #555;
  letter-spacing: .2px;
}

.vm__caption strong {
  color: hsl(var(--brand-500, 36 100% 50%));
}

/* Mobil düzen */
@media (max-width: 720px) {
  .vm {
    padding: 28px 16px 44px;
  }

  .vm__section {
    margin-bottom: 36px;
  }

  .vm__slogan {
    font-size: clamp(22px, 6vw, 36px);
  }

  .vm__caption {
    margin-top: 8px;
    font-size: 14px;
  }
}


/* ========================= vizyon&misyon and=========================*/