:root{
  --blue:#0b2b50;
  --blue2:#081f3a;

  --mid1:#f7f8fb;
  --mid2:#e9edf3;

  --text:#0f172a;
  --line: rgba(11,43,80,.18);
  --sep: rgba(11,43,80,.30);

  --orange:#e46b2f;

  --container: 1180px;
  --h: 68px;

  --shadow: 0 10px 22px rgba(10,36,66,.12);
  --radius: 14px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:#fff;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

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

/* TOPBAR */
.topbar{
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--line);
}

.topbar__inner{
  height: var(--h);
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
  display:flex;
  align-items: stretch;

  /* ✅ kesin taşma kes */
  overflow:hidden;
}

.brand{
  position: relative;          /* güvenli */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 16px;

  background: transparent !important;
  overflow: hidden;
}




/* ✅ JPEG bile olsa bozulmasın */
.brand__logo{
  height: 62px;       /* navbar yüksekliğiyle uyumlu */
  width: auto;        /* yatay logo için şart */
  max-width: 220px;   /* taşmayı önler */
  object-fit: contain;
  filter: none;       /* gölge de istemiyorsan */
}


/* ORTA: NAV */
.nav.nav--desktop{
  flex: 1 1 auto;
  min-width: 0;        /* ✅ KRİTİK */
  overflow: hidden;    /* ✅ KRİTİK */

  display:flex;
  align-items:center;
  justify-content:center;

  background: linear-gradient(180deg, var(--mid1) 0%, var(--mid2) 100%);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);

  padding: 0 10px;
}

/* linkler */
.nav.nav--desktop .nav__link{
  position: relative;
  display:inline-flex;
  align-items:center;

  height: 100%;
  padding: 0 10px;

  font-weight: 800;
  font-size: 13px;
  letter-spacing: .05px;

  color: #142337;
  white-space: nowrap; /* ✅ asla alt satıra düşmez */
  flex: 0 0 auto;
}

/* ayraçlar */
.nav.nav--desktop .nav__link:not(:last-child)::after{
  content:"|";
  margin-left: 10px;
  color: var(--sep);
  font-weight: 900;
}

.nav.nav--desktop .nav__link:hover{ color: var(--blue); }

/* seçili: turuncu alt çizgi */
.nav.nav--desktop .nav__link.is-active::before{
  content:"";
  position:absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

/* kenarlarda yumuşak kesim */
.nav.nav--desktop{
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

/* SAĞ: CTA */
.cta{
  flex: 0 0 200px;
  flex-shrink: 0;

  display:flex;
  align-items:center;
  justify-content:center;

  background: linear-gradient(180deg, var(--blue) 0%, var(--blue2) 100%);
  color:#fff;
  font-weight: 900;
  font-size: 18px;

  border-left: 1px solid rgba(255,255,255,.10);
}
.cta:hover{ filter: brightness(1.06); }

/* HAMBURGER (desktop'ta kapalı) */
.hamburger{
  display:none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(11,43,80,.18);
  background: rgba(255,255,255,.88);
  cursor:pointer;

  align-items:center;
  justify-content:center;
  gap: 4px;
  flex-direction: column;
}
.hamburger span{
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
}

/* MOBILE MENU */
/* =========================
   MOBILE DRAWER MENU
========================= */

.mobileMenu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 85vw);

  background: linear-gradient(180deg, var(--mid1), var(--mid2));
  box-shadow: -18px 0 40px rgba(0,0,0,.25);

  transform: translateX(100%);
  transition: transform .32s ease;

  z-index: 120;
  padding: 16px 14px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* AÇIK HAL */
.mobileMenu.is-open{
  transform: translateX(0);
}


.nav.nav--mobile{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.nav.nav--mobile .nav__link{
  background: #fff;
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 15px;
}

.nav.nav--mobile .nav__link:not(:last-child)::after{ content:""; }

.nav.nav--mobile .nav__link.is-active::before{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

.nav.nav--mobile .nav__link:hover{
  background: rgba(255,255,255,.92);
}

.cta--mobile{
  margin-top: auto;
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  color: #fff;
}
.mobileOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);

  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.mobileOverlay.is-open{
  opacity: 1;
  pointer-events: auto;
}
/* Drawer içi menü düzgün dizilsin */
.nav.nav--mobile{
  display:flex;
  flex-direction: column;
  padding: 0;
  gap: 0; /* çizgiler ayıracak */
}

.nav.nav--mobile .nav__link{
  display:flex;
  align-items:center;
  gap: 10px;

  padding: 14px 6px;
  background: transparent;     /* ✅ arka plan yok */
  border-radius: 0;            /* ✅ kart görünümü yok */

  font-size: 15px;
  font-weight: 900;
  color: #0b2b50;

  border-bottom: 2px solid rgba(228,107,47,.55); /* ✅ turuncu ayırıcı */
}

.nav.nav--mobile .nav__link:last-child{
  border-bottom: none;
}

.nav__icon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  font-size: 18px;
  flex: 0 0 28px;
}

.nav__text{
  min-width: 0;
}
.nav.nav--mobile .nav__link.is-active{
  color: #e46b2f;
}
.drawerCta{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:center;

  height: 52px;
  border-radius: 12px;

  background: linear-gradient(180deg, var(--blue) 0%, var(--blue2) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 16px;

  box-shadow: 0 14px 26px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
}

.drawerCta:hover{ filter: brightness(1.06); }

.mobileOverlay{
  display: none !important;
}
.drawerHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;

  padding: 6px 4px 12px;
  border-bottom: 2px solid rgba(228,107,47,.85);
  margin-bottom: 10px;
}

.drawerTitle{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .6px;
  color: #0b2b50;
  text-transform: uppercase;
}

.drawerSub{
  margin-top: 2px;
  font-weight: 700;
  font-size: 12px;
  color: rgba(15,23,42,.65);
}

.drawerClose{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}


/* RESPONSIVE */
@media (max-width: 980px){
  .brand{ flex-basis: 250px; }
  .cta{ flex-basis: 185px; font-size: 17px; }
  .nav.nav--desktop .nav__link{ font-size: 12.5px; padding: 0 9px; }
}

@media (max-width: 900px){
  .nav.nav--desktop{ display:none !important; }
  .cta{ display:none !important; }
  .hamburger{ display:flex; }

  .topbar__inner{
    align-items:center;
    justify-content: space-between;
  }

  .brand{
    flex: 0 0 235px;
    padding: 0 12px;
  }
  .brand__logo{ height: 46px; }
}

@media (max-width: 420px){
  .brand{ flex: 0 0 210px; }
  .brand__logo{ height: 54px; }
}
/* =========================
   HERO (Navbar altı)
   Background: assets/main.png
========================= */
.hero{
  position: relative;
  width: 100%;
  min-height: 520px;
  background: url("assets/main.png") center / cover no-repeat;
  overflow: hidden;
}

/* Sol tarafta koyu mavi degrade overlay (resimdeki gibi) */
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(11,43,80,.92) 0%,
      rgba(11,43,80,.78) 38%,
      rgba(11,43,80,.20) 68%,
      rgba(11,43,80,.00) 100%);
}

/* içerik hizalama */
.hero__inner{
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  min-height: 520px;

  display:flex;
  align-items:center;
}

/* metin blok */
.hero__content{
  max-width: 720px;
}

/* Başlık */
.hero__title{
  margin: 0 0 14px;
  color: #fff;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.6px;

  opacity: 0;
  transform: translateY(14px);
  animation: heroIn .8s ease forwards;
}

/* Alt başlık */
.hero__subtitle{
  margin: 0 0 22px;
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.35;

  opacity: 0;
  transform: translateY(14px);
  animation: heroIn .8s ease forwards;
  animation-delay: .12s;
}

/* Buton */
.hero__btn{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 10px;

  background: #c75a2b; /* turuncu buton */
  color: #fff;
  font-weight: 800;
  font-size: 16px;

  box-shadow: 0 14px 26px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);

  opacity: 0;
  transform: translateY(14px);
  animation: heroIn .8s ease forwards;
  animation-delay: .24s;

  transition: transform .15s ease, filter .15s ease;
}

.hero__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.hero__btnArrow{
  display:inline-block;
  transform: translateX(0);
  transition: transform .15s ease;
}
.hero__btn:hover .hero__btnArrow{
  transform: translateX(4px);
}

/* Animasyon */
@keyframes heroIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px){
  .hero{ min-height: 480px; }
  .hero__inner{ min-height: 480px; }

  .hero__title{ font-size: 44px; }
  .hero__subtitle{ font-size: 18px; }
}

@media (max-width: 720px){
  .hero{ min-height: 420px; }
  .hero__inner{ min-height: 420px; }

  .hero__overlay{
    /* mobilde overlay biraz daha güçlü olsun */
    background:
      linear-gradient(90deg,
        rgba(11,43,80,.94) 0%,
        rgba(11,43,80,.82) 55%,
        rgba(11,43,80,.30) 80%,
        rgba(11,43,80,.00) 100%);
  }

  .hero__content{ max-width: 560px; }
  .hero__title{ font-size: 34px; }
  .hero__subtitle{ font-size: 16px; margin-bottom: 18px; }
  .hero__btn{ padding: 12px 16px; font-size: 15px; border-radius: 10px; }
}

@media (max-width: 420px){
  .hero{ min-height: 380px; }
  .hero__inner{ min-height: 380px; }

  .hero__title{ font-size: 28px; }
  .hero__subtitle{ font-size: 15px; }
  .hero__btn{ width: fit-content; }
}
/* =========================
   SERVICES BAND (Ortak arka plan)
   Background: assets/main.png
========================= */
.servicesBand{
  position: relative;
  width: 100%;
  padding: 26px 0 42px;
  background: url("assets/hizmetler.png") center / cover no-repeat;
  overflow: hidden;
}

/* koyu overlay: üst satır daha açık, alt satır daha koyu hissi */
.servicesBand__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.88) 22%,
      rgba(11,43,80,.65) 55%,
      rgba(11,43,80,.78) 100%);
}

.servicesBand__inner{
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   ÜST: 3’lü özellik satırı
========================= */
.featuresRow{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  gap: 18px;
  padding: 10px 8px 22px;
}

.featureItem{
  min-width: 0; /* taşmaları kes */
  display:flex;
  align-items:flex-start;
  gap: 12px;
}

.featureIcon{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display:grid;
  place-items:center;

  background: rgba(11,43,80,.10);
  border: 1px solid rgba(11,43,80,.12);
  color: var(--blue);
  font-size: 26px;

  flex: 0 0 54px;
}

.featureText{ min-width: 0; }

.featureTitle{
  font-weight: 900;
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.15;
}

.featureDesc{
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(15,23,42,.75);
  max-width: 340px;

  /* uzun metinlerde taşma olmasın */
  word-break: break-word;
}

.featureSep{
  width: 1px;
  height: 58px;
  background: rgba(15,23,42,.14);
  border-radius: 1px;
}

/* =========================
   ORTA: Hizmetlerimiz başlığı
========================= */
.sectionTitle{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  padding: 12px 0 18px;
}

.sectionTitle__text{
  margin:0;
  color:#fff;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: .2px;
  text-shadow: 0 10px 22px rgba(0,0,0,.28);
  text-align:center;
  line-height: 1.1;
}

.sectionTitle__line{
  flex: 0 0 220px;
  height: 3px;
  border-radius: 999px;
  background: rgba(228,107,47,.95);
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
  opacity: .95;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet: biraz sıkılaştır */
@media (max-width: 1024px){
  .servicesBand{ padding: 22px 0 38px; }

  .featureIcon{
    width: 50px; height: 50px;
    border-radius: 13px;
    font-size: 24px;
    flex-basis: 50px;
  }

  .featureTitle{ font-size: 17px; }
  .featureDesc{ font-size: 13.5px; max-width: 100%; }

  .sectionTitle__text{ font-size: 34px; }
  .sectionTitle__line{ flex-basis: 160px; }
}

/* Mobil: 3’lü satır tek kolona düşsün */
@media (max-width: 820px){
  .featuresRow{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 8px 2px 14px;
  }

  .featureSep{ display:none; }

  /* ✅ mobilde sade: arka plan YOK */
  .featureItem{
    align-items:flex-start;
    padding: 4px 0;     /* sadece boşluk */
  }

  .featureIcon{
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 22px;
    flex-basis: 46px;
  }

  .featureTitle{
    font-size: 16px;
    margin-bottom: 2px;
  }

  .featureDesc{
    font-size: 13px;
  }

  .sectionTitle{
    gap: 12px;
    padding: 10px 0 14px;
  }

  .sectionTitle__text{
    font-size: 28px;
  }

  .sectionTitle__line{
    flex-basis: 110px;
    height: 3px;
  }
}


/* Çok küçük ekran */
@media (max-width: 420px){
  .servicesBand{ padding: 18px 0 30px; }

  .featureItem{ padding: 11px 11px; }
  .featureTitle{ font-size: 15px; }
  .featureDesc{ font-size: 12.8px; }

  .sectionTitle__text{ font-size: 24px; }
  .sectionTitle__line{ flex-basis: 80px; height: 3px; }
}


/* =========================
   ALT: 4’lü hizmet barı
========================= */
/* =========================
   HİZMETLERİMİZ BAR (Görseldeki gibi)
========================= */
/* =========================
   HİZMETLERİMİZ BAR (düzeltilmiş)
========================= */

/* =========================
   HİZMETLERİMİZ BAR (yazı görünür fix)
========================= */

.serviceBar--classic{
  margin: 10px auto 0;
  max-width: 1120px;

  background: rgba(233,237,243,.92);
  border: 1px solid rgba(15,23,42,.18);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.serviceBar--classic .serviceChip{
  min-width: 0;
  display:flex;
  align-items:center;
  gap: 12px;

  /* ✅ daha kompakt */
  padding: 14px 16px;

  color: #0b2b50;
  text-decoration:none;

  border-right: 1px solid rgba(15,23,42,.16);
  background: transparent;

  transition: background .12s ease;
}
.serviceBar--classic .serviceChip:last-child{ border-right:0; }

.serviceBar--classic .serviceChip:hover{
  background: rgba(255,255,255,.55);
}

/* ✅ ikon alanı küçültüldü */
.serviceBar--classic .serviceChip__icon{
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display:grid;
  place-items:center;
  overflow:hidden;
}

.serviceBar--classic .serviceChip__icon img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  display:block;
}

/* ✅ YAZI: desktop'ta görünür + taşarsa font küçülme yerine 2 satıra geç */
.serviceBar--classic .serviceChip__text{
  min-width: 0;

  font-weight: 900;
  font-size: 18px;      /* ✅ küçültüldü */
  line-height: 1.15;

  /* ✅ görünürlüğü garanti: */
  display: -webkit-box;
  -webkit-line-clamp: 2;        /* ✅ max 2 satır */
  -webkit-box-orient: vertical;
  overflow: hidden;

  /* Safari/Chromium uyum */
  word-break: break-word;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
  .serviceBar--classic .serviceChip__text{ font-size: 16px; }
}

@media (max-width: 980px){
  .serviceBar--classic{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .serviceBar--classic .serviceChip{
    border-right: 0;
    border-bottom: 1px solid rgba(15,23,42,.16);
  }

  .serviceBar--classic .serviceChip:nth-child(3),
  .serviceBar--classic .serviceChip:nth-child(4){
    border-bottom: 0;
  }

  .serviceBar--classic .serviceChip__text{
    font-size: 17px;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 520px){
  .serviceBar--classic{
    grid-template-columns: 1fr;
  }

  .serviceBar--classic .serviceChip{
    padding: 14px 14px;
    border-bottom: 1px solid rgba(15,23,42,.16);
  }
  .serviceBar--classic .serviceChip:last-child{ border-bottom: 0; }

  .serviceBar--classic .serviceChip__icon{
    width: 48px; height: 48px; flex-basis: 48px;
  }
  .serviceBar--classic .serviceChip__icon img{
    width: 40px; height: 40px;
  }

  .serviceBar--classic .serviceChip__text{
    font-size: 16px;
    -webkit-line-clamp: 2;
  }
}
/* =========================
   PRODUCTS BAND (Ürünlerimiz)
   Background: assets/hizmetler.png (istersen main.png yap)
========================= */
  .productsBand{
    position: relative;
    width: 100%;
    padding: 34px 0 44px;

    background: url("assets/hizmetler.png") center / cover no-repeat;
    overflow: hidden;
  }

  .productsBand__overlay{
    position:absolute;
    inset:0;
    /* üst daha açık, alt biraz koyu: kartlar öne çıksın */
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.86) 0%,
        rgba(255,255,255,.78) 40%,
        rgba(11,43,80,.42) 100%);
  }

  .productsBand__inner{
    position: relative;
    z-index: 1;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
  }

  /* Başlık alanı */
  .productsHead{
    text-align:center;
    margin-bottom: 18px;
  }

  .productsHead__titleRow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 18px;
    margin-bottom: 8px;
  }

  .productsHead__line{
    flex: 0 0 220px;
    height: 3px;
    border-radius: 999px;
    background: rgba(228,107,47,.95);
    box-shadow: 0 10px 20px rgba(0,0,0,.14);
  }

  .productsHead__title{
    margin:0;
    font-weight: 900;
    font-size: 44px;
    color:#0b2b50;
    letter-spacing: .2px;
    text-shadow: 0 10px 22px rgba(0,0,0,.10);
  }

  .productsHead__subtitle{
    margin:0;
    font-weight: 700;
    font-size: 20px;
    color: rgba(15,23,42,.75);
  }

  /* Grid */
  .productsGrid{
    display:grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 22px;
    align-items: stretch;
    margin-top: 14px;
  }

  /* Kart */
  .productCard{
    display:flex;
    flex-direction: column;
    border-radius: 14px;
    overflow:hidden;

    background: rgba(255,255,255,.86);
    border: 1px solid rgba(15,23,42,.18);
    box-shadow: 0 14px 28px rgba(0,0,0,.18);

    transition: transform .15s ease, filter .15s ease;
  }

  .productCard:hover{
    transform: translateY(-2px);
    filter: brightness(1.02);
  }

.productCard__imgWrap{
  background: rgba(255,255,255,.92);
  padding: 0;                 /* ✅ boşluğu kaldır */
  min-height: 160px;
  height: 220px;              /* ✅ sabit yükseklik (istersen değiştir) */
  display:flex;
  align-items: stretch;       /* ✅ */
  justify-content: stretch;   /* ✅ */
}

.productCard__img{
  width: 100%;
  height: 100%;               /* ✅ wrap’i doldur */
  max-width: none;            /* ✅ kısıt kaldır */
  object-fit: cover;          /* ✅ tam doldurur (kırpar) */
  object-position: center;    /* ✅ ortadan kırp */
  display:block;
}


  /* Alt mavi label bandı */
.productCard__label{
  background: linear-gradient(180deg, #0b2b50 0%, #081f3a 100%);
  color:#fff;

  font-weight: 900;
  font-size: 18px;
  text-align:center;

  padding: 12px 10px;

  height: 64px;                /* ✅ hepsi aynı bant */
  display:flex;
  align-items:center;
  justify-content:center;

  line-height: 1.2;
}



  /* CTA buton */
  .productsCtaRow{
    display:flex;
    justify-content:center;
    margin-top: 22px;
  }

  .productsCtaBtn{
    display:inline-flex;
    align-items:center;
    gap: 12px;

    padding: 14px 22px;
    border-radius: 10px;

    background: #c75a2b;
    color:#fff;
    font-weight: 900;
    font-size: 18px;

    box-shadow: 0 14px 26px rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.18);

    transition: transform .15s ease, filter .15s ease;
  }

  .productsCtaBtn:hover{
    transform: translateY(-1px);
    filter: brightness(1.06);
  }

  .productsCtaBtn__arrow{
    display:inline-block;
    transform: translateX(0);
    transition: transform .15s ease;
  }

  .productsCtaBtn:hover .productsCtaBtn__arrow{
    transform: translateX(4px);
  }

  /* =========================
    RESPONSIVE
    Mobilde yan yana 2 ürün
  ========================= */
  @media (max-width: 1100px){
    .productsHead__title{ font-size: 36px; }
    .productsHead__subtitle{ font-size: 18px; }
    .productsHead__line{ flex-basis: 160px; }

    .productsGrid{
      grid-template-columns: repeat(2, minmax(0,1fr)); /* ✅ 2 kolon */
      gap: 18px;
    }

    .productCard__label{ font-size: 18px; }
  }

  @media (max-width: 520px){
    .productsBand{ padding: 26px 0 34px; }

    .productsHead__titleRow{ gap: 12px; }
    .productsHead__line{ flex-basis: 90px; }
    .productsHead__title{ font-size: 28px; }
    .productsHead__subtitle{ font-size: 15px; }

    /* ✅ mobilde 2 kolon devam */
    .productsGrid{
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
    }

    .productCard__imgWrap{
      min-height: 130px;
      padding: 12px 10px 8px;
    }
    .productCard__img{
      height: 110px;
      max-width: 200px;
    }

  .productCard__label{
      font-size: 15px;
      min-height: 52px;   /* mobilde biraz daha kısa */
      padding: 10px 8px;
    }

    .productsCtaBtn{
      font-size: 16px;
      padding: 12px 18px;
    }
  }

  @media (max-width: 360px){
    /* Çok küçük ekranlarda okunabilirlik için 1 kolona düşürebilirsin.
      Sen 2 kolon istedin diye default bırakıyorum.
      İstersen aç: */
    /* .productsGrid{ grid-template-columns: 1fr; } */
  }
  /* =========================
    ABOUT BAND (Hakkımızda)
    Background: assets/hizmetler.png (istersen main.png)
  ========================= */
  .aboutBand{
    position: relative;
    width: 100%;
    padding: 34px 0 46px;

    background: url("assets/hizmetler.png") center / cover no-repeat;
    overflow: hidden;
  }

  /* Overlay: üst daha açık, alt biraz koyu (okunaklı olsun) */
  .aboutBand__overlay{
    position:absolute;
    inset:0;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.86) 0%,
        rgba(255,255,255,.78) 40%,
        rgba(11,43,80,.35) 100%);
  }

  .aboutBand__inner{
    position: relative;
    z-index: 1;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
  }

  /* Başlık: ürünlerle aynı stil */
  .aboutHead{
    text-align:center;
    margin-bottom: 18px;
  }

  .aboutHead__titleRow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 18px;
    margin-bottom: 8px;
  }

  .aboutHead__line{
    flex: 0 0 200px;
    height: 3px;
    border-radius: 999px;
    background: rgba(228,107,47,.95);
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
  }

  .aboutHead__title{
    margin:0;
    font-weight: 900;
    font-size: 42px;
    color:#0b2b50;
    letter-spacing: .2px;
    text-shadow: 0 10px 22px rgba(0,0,0,.10);
  }

  .aboutHead__subtitle{
    margin:0;
    font-weight: 700;
    font-size: 18px;
    color: rgba(15,23,42,.72);
  }

  /* Layout */
  .aboutGrid{
    display:grid;
    grid-template-columns: 1.1fr .9fr; /* sol metin biraz geniş */
    gap: 22px;
    align-items: start;
  }

/* Sol metin kutuları */
.aboutText{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.aboutBox{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.18);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
  padding: 16px 18px;
}

.aboutBox__title{
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
  color:#0b2b50;
}

.aboutBox__desc{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(15,23,42,.76);
}

/* Sağ kare görsel */
.aboutMedia{
  display:flex;
  justify-content: center;
}

.aboutMedia__frame{
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;          /* ✅ kare */
  border-radius: 16px;
  overflow:hidden;

  border: 1px solid rgba(15,23,42,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  background: rgba(255,255,255,.75);
}

.aboutMedia__img{
  width: 100%;
  height: 100%;
  object-fit: cover;            /* kareye doldurur */
  display:block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .aboutHead__title{ font-size: 34px; }
  .aboutHead__subtitle{ font-size: 16px; }
  .aboutHead__line{ flex-basis: 140px; }

  .aboutGrid{
    grid-template-columns: 1fr; /* ✅ mobil/tablet: üst üste */
  }

  .aboutMedia{
    justify-content: flex-start;
  }

  .aboutMedia__frame{
    width: min(460px, 100%);
  }
}

@media (max-width: 520px){
  .aboutBand{ padding: 26px 0 36px; }

  .aboutHead__titleRow{ gap: 12px; }
  .aboutHead__line{ flex-basis: 90px; }
  .aboutHead__title{ font-size: 28px; }
  .aboutHead__subtitle{ font-size: 14px; }

  .aboutBox{
    padding: 14px 14px;
    border-radius: 14px;
  }

  .aboutBox__title{ font-size: 18px; }
  .aboutBox__desc{ font-size: 14px; }

  .aboutMedia__frame{
    border-radius: 14px;
  }
}
/* =========================
   HAKKIMIZDA – METİN BLOKLARI
========================= */

/* Üst kısa açıklama */
.aboutIntro{
  margin-bottom: 14px;
}

.aboutIntro p{
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(15,23,42,.78);
}

/* Şeffaf kart */
.aboutBox--transparent{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 6px 0;
}

/* Madde listesi */
.aboutList{
  margin: 6px 0 0;
  padding-left: 18px;
  list-style: none;
}

.aboutList li{
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;

  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(15,23,42,.78);
}

/* Turuncu madde işareti */
.aboutList li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(228,107,47,.95);
}

/* Mobil düzen */
@media (max-width: 520px){
  .aboutIntro p{
    font-size: 14px;
  }

  .aboutList li{
    font-size: 14px;
  }
}
/* =========================
   REFERENCES (Auto Marquee)
   Aynı tasarım dili + arka plan
========================= */
.refsBand{
  position: relative;
  width: 100%;
  padding: 26px 0 34px;

  /* aynı atmosfer: istersen hizmetler.png veya main.png */
  background: url("assets/hizmetler.png") center / cover no-repeat;
  overflow: hidden;
}

.refsBand__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.86) 0%,
      rgba(255,255,255,.78) 45%,
      rgba(11,43,80,.25) 100%);
}

.refsBand__inner{
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.refsHead{
  text-align:center;
  margin-bottom: 14px;
}

.refsHead__titleRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
}

.refsHead__line{
  flex: 0 0 200px;
  height: 3px;
  border-radius: 999px;
  background: rgba(228,107,47,.95);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

.refsHead__title{
  margin:0;
  font-weight: 900;
  font-size: 36px;
  color:#0b2b50;
  letter-spacing: .2px;
  text-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* Marquee container */
.refsMarquee{
  position: relative;
  background: transparent;   /* ✅ */
  border: none;              /* ✅ */
  box-shadow: none;          /* ✅ */
  overflow: hidden;
  padding: 10px 0;           /* sadece boşluk */
}


/* Kenarlarda fade */
/* ✅ Kenar fade tamamen kapalı */
.refsMarquee::before,
.refsMarquee::after{
  display: none !important;
  content: none !important;
}



/* Track: sürekli kayma */
.refsTrack{
  display:flex;
  align-items:center;
  gap: 46px;
  padding-left: 46px;

  width: max-content;
  animation: refsScroll 60s linear infinite;
  will-change: transform;
}

/* Hover’da durdur */
@media (hover:hover){
  .refsMarquee:hover .refsTrack{
    animation-play-state: paused;
  }
}

.refLogo{
  height: 74px;
  width: auto;
  object-fit: contain;

  /* ✅ renkli kalsın */
  filter: none;
  opacity: 1;

  /* çok hafif netlik (istersen kaldır) */
  image-rendering: auto;
}



@media (hover:hover){
  .refLogo:hover{
    filter: none;
    opacity: 1;
    transform: translateY(-1px);
  }
}


/* Animasyon */
@keyframes refsScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .refsHead__title{ font-size: 30px; }
  .refsHead__line{ flex-basis: 140px; }

  .refsTrack{
    gap: 32px;
    padding-left: 32px;
    animation-duration: 54s;
  }

  .refLogo{ height: 40px; }
}

@media (max-width: 520px){
  .refsBand{ padding: 20px 0 28px; }

  .refsHead__titleRow{ gap: 12px; }
  .refsHead__line{ flex-basis: 90px; }
  .refsHead__title{ font-size: 24px; }

  .refsMarquee{
    border-radius: 14px;
    padding: 12px 0;
  }

  .refsMarquee::before,
  .refsMarquee::after{
    width: 42px;
  }

  .refsTrack{
    gap: 24px;
    padding-left: 24px;
    animation-duration: 40s;
  }

  .refLogo{ height: 64px; }
}

/* Kullanıcı reduced-motion isterse animasyon kapansın */
@media (prefers-reduced-motion: reduce){
  .refsTrack{ animation: none; }
}
/* =========================
   CONTACT BAND (Neden Biz + İletişim)
   Ortak arka plan: assets/hizmetler.png
========================= */
.contactBand{
  position: relative;
  width: 100%;
  padding: 26px 0 44px;
  background: url("assets/iletisim.png") center / cover no-repeat;
  overflow: hidden;
}

.contactBand__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.88) 0%,
      rgba(255,255,255,.80) 28%,
      rgba(11,43,80,.55) 100%);
}

.contactBand__inner{
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   NEDEN BİZ?
========================= */
/* =========================
   NEDEN BİZ? — CHIP TASARIM (desktop + mobil)
========================= */

.whyHead{
  margin-bottom: 14px;
}

.whyHead__titleRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin-bottom: 12px;
}

.whyHead__line{
  flex: 0 0 220px;
  height: 3px;
  border-radius: 999px;
  background: rgba(228,107,47,.95);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

.whyHead__title{
  margin:0;
  font-weight: 900;
  font-size: 40px;
  color:#0b2b50;
  text-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* ✅ arka plan: görseldeki gibi açık/soft bir şerit */
.whyRow{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap: wrap;
  gap: 14px;

  padding: 12px 14px;

   background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}

/* ✅ her madde ayrı "buton" gibi */
.whyItem{
  display:flex;
  align-items:center;
  gap: 12px;

  padding: 12px 16px;
  border-radius: 14px;
border-radius: 8px;
  background: #f3f4f6;

  border: 1px solid rgba(15,23,42,.12);

  min-width: 220px;       /* desktop hizalama */
  justify-content:flex-start;

  transition: transform .15s ease, filter .15s ease;
}

@media (hover:hover){
  .whyItem:hover{
    transform: translateY(-1px);
    filter: brightness(1.02);
  }
}

.whyIcon{
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 34px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.10));
}

.whyText{
  font-weight: 900;
  font-size: 18px;
  color:#0b2b50;
  white-space: nowrap;
}

/* ✅ artık ayraç yok */
.whySep{ display:none !important; }


/* =========================
   İLETİŞİM GRID
========================= */
/* =========================
   CONTACT (Grid + Sol Bilgiler + Form)
========================= */

.contactGrid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
}

/* SOL */
.contactInfo{ padding: 10px 0; }

.contactTitle{
  margin: 0 0 6px;
  font-size: 42px;
  font-weight: 900;
  color:#0b2b50;
  text-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.contactSub{
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(15,23,42,.70);
}

.contactLines{
  display: flex;
  flex-direction: column;
}

/* ✅ Resimdeki gibi: şeffaf satırlar + arada çizgi */
.contactLine{
  display:flex;
  align-items:center;
  gap: 14px;

  background: transparent;
  border: none;
  box-shadow: none;

  padding: 12px 0;
  border-radius: 0;
  position: relative;
}

.contactLine:not(:last-child)::after{
  content:"";
  position:absolute;
  left: 42px;         /* ikon hizasından sonra başlasın */
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(15,23,42,.18);
}

/* ✅ ikon: şeffaf, kutu yok */
.contactIcon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;

  background: transparent;
  border: none;
  box-shadow: none;

  font-size: 20px;
  color: #0b2b50;
  flex: 0 0 28px;
}

/* Metinler: "Telefon: +90..." gibi yan yana */
.contactLineText{
  min-width: 0;
  display:flex;
  flex-direction: row;
  align-items:center;
  gap: 6px;
  flex-wrap: wrap;
}

.contactLabel{
  font-size: 15px;
  font-weight: 600;
  color: rgba(15,23,42,.75);
  margin: 0;
}

.contactValue{
  font-size: 15px;
  font-weight: 700;
  color: #0b2b50;
  text-decoration: none;
  word-break: break-word;
}

/* SAĞ FORM */
.contactFormCard{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.18);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  padding: 16px;
}

.contactForm{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.formField{ display:block; }

.formLabel{
  display:block;
  font-weight: 900;
  font-size: 12px;
  color: rgba(15,23,42,.55);
  margin-bottom: 6px;
}

.formInput,
.formTextarea{
  width: 100%;
  border: 1px solid rgba(15,23,42,.16);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  background: #fff;
}

.formTextarea{
  resize: vertical;
  min-height: 110px;
}

.formInput:focus,
.formTextarea:focus{
  border-color: rgba(228,107,47,.70);
  box-shadow: 0 0 0 4px rgba(228,107,47,.18);
}

.formBtn{
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  background: #c75a2b;
  box-shadow: 0 14px 26px rgba(0,0,0,.22);
  transition: transform .15s ease, filter .15s ease;
}

.formBtn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}

/* =========================
   CONTACT SOCIAL ICONS (Yan yana)
========================= */

.contactSocials{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap; /* dar ekranda taşmasın */
}

.socialIcon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:grid;
  place-items:center;

  font-weight: 900;
  font-size: 14px;
  color:#fff;
  text-decoration:none;

  box-shadow: 0 10px 18px rgba(0,0,0,.18);
  transition: transform .15s ease, filter .15s ease;
}

@media (hover:hover){
  .socialIcon:hover{
    transform: translateY(-2px);
    filter: brightness(1.05);
  }
}

.socialIcon.google{ background: linear-gradient(180deg,#ea4335,#b81f14); }
.socialIcon.instagram{ background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.socialIcon.whatsapp{ background: linear-gradient(180deg,#25D366,#128C7E); }
.socialIcon.mail{ background: linear-gradient(180deg,#2f86c7,#1f5f9a); }

/* =========================
   WHY (Neden Biz?) — Mobil Uyumluluk
========================= */

/* Başlık mobilde tek satır kalsın */
.whyHead__title{ white-space: nowrap; }

@media (max-width: 520px){
  .whyHead__title{
    font-size: 26px;
    letter-spacing: .1px;
  }
  .whyHead__line{
    flex: 0 0 110px;
  }
}

/* 2x2 grid (tablet/mobil) */
@media (max-width: 980px){
  .whyRow{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 10px;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .whySep{ display:none; }

  .whyItem{
    min-width: 0;
    justify-content: flex-start;
    gap: 10px;

    border-radius: 8px;
  background: #f3f4f6;
    border: 1px solid rgba(15,23,42,.12);
   
    padding: 10px 10px;
  }

  .whyIcon{
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .whyText{
    min-width: 0;
    font-size: 14px;
    font-weight: 900;
    white-space: normal;
    line-height: 1.15;
  }
}

@media (max-width: 520px){
  .whyRow{
    gap: 8px;
    padding: 8px 6px;
  }

  .whyItem{
    border-radius: 8px;
  background: #f3f4f6;
  
    padding: 9px 9px;
  }

  .whyIcon{
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .whyText{ font-size: 13px; }
}

@media (max-width: 360px){
  .whyRow{ grid-template-columns: 1fr; }
}

/* =========================
   CONTACT — RESPONSIVE (mobil)
========================= */

@media (max-width: 980px){
  .contactGrid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contactTitle{
    font-size: 30px;
    line-height: 1.2;
  }

  .contactSub{ font-size: 15px; }
}

@media (max-width: 520px){
  .contactBand{ padding: 22px 0 30px; }

  .contactInfo{ padding: 0; }

  .contactTitle{ font-size: 24px; }

  .contactSub{
    font-size: 14px;
    margin-bottom: 12px;
  }

  .contactLine{ padding: 10px 0; }

  .contactLine:not(:last-child)::after{ left: 34px; }

  .contactIcon{
    width: 24px;
    height: 24px;
    font-size: 18px;
    flex-basis: 24px;
  }

  .contactLabel,
  .contactValue{
    font-size: 14px;
  }

  .contactFormCard{
    width: 100%;
    padding: 14px;
    border-radius: 14px;
  }

  .formInput,
  .formTextarea{
    font-size: 14px;
    padding: 11px 11px;
  }

  .formBtn{
    font-size: 15px;
    padding: 12px;
    width: 100%;
  }

  .socialIcon{
    width: 38px;
    height: 38px;
    font-size: 13px;
    border-radius: 10px;
  }
}

@media (max-width: 360px){
  .contactTitle{ font-size: 22px; }
  .contactValue{ font-size: 13px; }
  .contactSocials{ gap: 8px; }
}

/* =========================
   FOOTER
========================= */
.siteFooter{
  position: relative;
  width: 100%;
  padding: 34px 0 18px;

  background: linear-gradient(180deg, rgba(11,43,80,1) 0%, rgba(8,31,58,1) 100%);
  overflow: hidden;
}

/* Hafif desen/ışık hissi (assets arka planıyla da uyumlu) */
.siteFooter__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 280px at 15% 20%, rgba(228,107,47,.18), transparent 70%),
    radial-gradient(900px 320px at 85% 30%, rgba(255,255,255,.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  pointer-events:none;
}

.siteFooter__inner{
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  color: rgba(255,255,255,.90);
}

.footerTop{
  display:grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

/* Brand */
.footerBrand{ min-width: 0; }

.footerLogo{
  height: 40px;
  width: auto;
  object-fit: contain;
  display:block;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.25));
  margin-bottom: 10px;
}

.footerDesc{
  margin: 0 0 14px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 520px;
}

/* Social */
.footerSocial{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.socialBtn{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);

  transition: transform .15s ease, filter .15s ease, background .15s ease;
}

.socialBtn svg{
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,.92);
}

.socialBtn:hover{
  transform: translateY(-2px);
  background: rgba(228,107,47,.22);
}

/* Columns */
.footerCol{ min-width: 0; }

.footerTitle{
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .2px;
}

.footerLink{
  display:block;
  padding: 6px 0;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  transition: color .12s ease, transform .12s ease;
}

.footerLink:hover{
  color: rgba(255,255,255,.98);
  transform: translateX(2px);
}

/* Contact info */
.footerInfo{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.footerInfo__row{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}

.footerInfo__icon{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display:grid;
  place-items:center;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 16px;
}

.footerInfo__text{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,.78);
  word-break: break-word;
}

a.footerInfo__text:hover{ color: rgba(255,255,255,.98); }

/* Bottom line */
.footerBottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.16);

  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;

  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  flex-wrap: wrap;
}

.footerBottom__sep{
  opacity: .6;
}

.footerBottom__link{
  color: rgba(255,255,255,.72);
  text-decoration: none;
  padding: 6px 6px;
  border-radius: 10px;
  transition: color .12s ease, background .12s ease;
}

.footerBottom__link:hover{
  color: rgba(255,255,255,.98);
  background: rgba(255,255,255,.10);
}

/* Responsive */
@media (max-width: 980px){
  .footerTop{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px){
  .siteFooter{ padding: 26px 0 16px; }

  .footerTop{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footerLogo{ height: 38px; }
  .footerDesc{ font-size: 13.5px; }

  .footerBottom{
    gap: 6px;
    font-size: 12.5px;
  }
}
/* =========================
   SABİT SOL İLETİŞİM BAR
   - Desktop: ortada, 4 ikon
   - Mobil: sol altta, sadece 2 ikon
========================= */

/* === MASAÜSTÜ (SOL ALT) === */
.sideContact{
  position: fixed;
  left: 16px;
  bottom: 20px;

  top: auto;              /* ❌ ortayı iptal */
  transform: none;        /* ❌ translateY iptal */

  display: flex;
  flex-direction: column;
  gap: 12px;

  z-index: 200;
}

.sideIcon{
  width: 48px;
  height: 48px;
  border-radius: 14px;

  display: block;
  padding: 0;
  overflow: hidden;          /* ✅ resim taşmasın */

  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);

  transition: transform .15s ease, filter .15s ease;
}


/* =========================
   MOBİL: ALT SOL + 2 İKON
========================= */
@media (max-width: 900px){
  /* Ortalamayı iptal et, alt-sola indir */
  .sideContact{
    top: auto;
    bottom: 16px;
    left: 12px;
    transform: none;

    gap: 10px;
  }

  /* Mobilde ikonlar biraz daha kompakt */
  .sideIcon{
    width: 46px;
    height: 46px;
    font-size: 20px;
    border-radius: 12px;
  }

  /* Mobilde sadece WhatsApp + Telefon kalsın */
  .sideIcon.instagram,
  .sideIcon.mail{
    display: none !important;
  }
}
.featureIcon{
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(11,43,80,.06);
  border: 1px solid rgba(11,43,80,.14);
  border-radius: 10px;

  overflow: hidden; /* ✅ taşma engeli */
}

.featureIcon img{
  width: 100%;      /* ✅ TAM KAPLAR */
  height: 100%;     /* ✅ TAM KAPLAR */
  object-fit: contain; /* taşmadan sığdır */
  display: block;
}
.refsNote{
  margin: 12px auto 0;
  max-width: 920px;
  text-align: center;

  font-size: 10.5px;     /* ✅ daha küçük */
  line-height: 1.5;
  font-weight: 650;

  color: rgba(15,23,42,.60);
}
@media (max-width: 520px){
  .refsNote{
    font-size: 11.5px;
    padding: 0 8px;
  }
}
/* =========================
   LANGUAGE MODAL (center)
========================= */
.langModal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;               /* kapalı */
}

.langModal.is-open{
  display: block;
}

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

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

  width: min(420px, calc(100% - 32px));
  padding: 18px 18px 16px;
  border-radius: 16px;

  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.14);
  box-shadow: 0 26px 70px rgba(0,0,0,.30);
}

.langModal__close{
  position: absolute;
  right: 10px;
  top: 10px;

  width: 38px;
  height: 38px;
  border-radius: 12px;

  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  cursor: pointer;

  font-weight: 900;
}

.langModal__flags{
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.langFlag{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}

.langFlag img{
  width: 64px;     /* dikdörtgen bayrak */
  height: 40px;
  object-fit: cover;
  border-radius: 10px;

  box-shadow: 0 14px 24px rgba(0,0,0,.18);
  opacity: .82;
  transition: transform .12s ease, filter .12s ease, opacity .12s ease;
}

.langFlag.is-active img{
  opacity: 1;
  outline: 3px solid rgba(228,107,47,.92);
  outline-offset: 3px;
}

@media (hover:hover){
  .langFlag:hover img{
    transform: translateY(-2px);
    filter: brightness(1.04);
  }
}
.footerBottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.footerBottom__right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.footerBottom__credit{
  opacity:.85;
  font-weight:600;
  white-space:nowrap;
}
.footerBottom__credit{
  color:#fff;
  opacity:1;
  font-weight:600;
  white-space:nowrap;
}

.footerBottom__credit .creditBrand{
  color:#fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-weight:800;
}
@media (max-width:768px){

  .footerBottom{
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:8px;
  }

  .footerBottom__right{
    justify-content:center;
  }

  .footerBottom__credit{
    white-space:normal;
  }
}
@media (max-width: 520px){
  .productCard__imgWrap{
    height: 160px;  /* mobil daha kısa */
    min-height: 160px;
    padding: 0;
  }
  .productCard__img{
    height: 100%;
    max-width: none;
    object-fit: cover;
  }
}
