
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  --bg: #131313;
  --text: #fff;
  --accent: #ff5e14;
  --panel: #12161a;
  --muted: #95a2b1;
  --dry: #141414;
  --dry-weak: #58a3ff55;
  --shadow: 0 10px 28px rgba(0, 0, 0, .35);
  --radius: 0px;
  --on-wave: var(--accent);
  --on-prog: #fff;
  --off-wave: #cccccc;
  --off-prog: var(--dry);
  --card-bg: #0000;       /* koyu gri kart zemini */
  --card-border: #fff;   /* kart kenarı */
  --ft-bg: #050505;                 /* koyu zemin */
  --ft-fg: #fff;                    /* metin */
  --ft-muted: rgba(255,255,255,.72);
  --ft-border: rgba(255,255,255,.12);
  --ft-ring: rgba(255,255,255,.22);
    
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
}

.i18n {
  font-size: inherit; /* boyutu değiştirmesin */
  line-height: inherit;
  font-weight: inherit;
}

.i18n [data-lang] {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

html[data-lang="en"] .i18n [data-lang="en"],
html[data-lang="tr"] .i18n [data-lang="tr"] {
  display: inline;
  opacity: 1;
}

body.lang-fade-out .i18n [data-lang] {
  opacity: 0 !important;
}

.lang-switch {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.lang-btn {
  padding:.4rem .6rem !important;
  font-size: .80rem !important;
  font-weight: 400!important;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  text-transform: none !important;
  border:1px solid rgba(255,255,255,.25);
  border-radius:18px; 
  background:transparent; 
}

.lang-btn .flag {
  font-size: 1rem;
}

.lang-btn:hover {
  color: #fff;
  background: rgb(0 0 0 / 0.5);
}



body {
  background: var(--bg);
  color: var(--text);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.no-scroll { overflow: hidden; }


section {
  min-height: 0vh;
}

#hizmetler,
#galeri,
#iletisim,
#ref-tracks,
#gallery
 {
  scroll-margin-top: 100px;
}

#gear-section{
    scroll-margin-top: 88px;
    
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--accent);
}

#hizmetler h2 {
  text-align: center;
  font-size: 4rem; /* boyutu istersen artırabilirsin */
  margin-bottom: 40px;
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}


ol, ul{
    
    padding-left: 0px;
}
button {
  background: transparent;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  color:#000;
  background: #fff;
}


    .topbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      background: rgba(0,0,0,0.3);
      transition: all 0.3s ease;
      padding-top: 10px;   /* üstten boşluk */
    }
    
    .topbar.scrolled {
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      box-shadow: 0 4px 12px rgba(0,0,0,.5);
    }

    /* NAV */
    .navbar {
      padding: 0.5rem 6rem;
    }
    .nav-link {
      color: #fff !important;
      text-transform: uppercase;
      font-weight: 500;
      letter-spacing: .08rem;
      min-width: 120px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .navbar-nav.main-menu {
  flex: 1;
  justify-content: space-evenly;
}
    
    .nav-link:hover {
      background: rgba(0, 0, 0, 0.5); 
      color: var(--accent); 
      transform: translateY(-1px);
    }
   
    .logo img {
      height: 70px;  /* logonun yüksekliği */
      width: auto;
      object-fit: contain;
    }

.navbar .mastering-btn {
  background-color:#0d0d0d ; /* turuncu */
  color: var(--accent) !important;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 0;       /* düz köşeler */
  transition: all 0.3s ease;
}

.navbar .mastering-btn:hover {
  background-color:var(--accent) ;
  color:#fff !important ;
}


.mastering-form {
  background-color: var(--ft-bg) !important;
  max-width: 900px;
  margin: 100px auto;
  padding: 30px;
}

.mastering-form h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.mastering-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #ddd;
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* her zaman 2 eşit sütun */
  gap: 20px;
}


/* Tüm form label ve input yazılarını beyaz */
.mastering-form label,
.mastering-form .form-control,
.mastering-form textarea,
.mastering-form input,
.mastering-form select {
  color: #fff;
}

/* Inputların iç yazısı beyaz */
.mastering-form .form-control,
.mastering-form textarea {
  background-color: transparent; /* arka plan şeffaf/dark uyumlu */
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

/* Input placeholder beyazımsı */
.mastering-form .form-control::placeholder,
.mastering-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

/* Submit buton */
.mastering-form button {
  background-color: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  text-transform: uppercase;
}

.mastering-form button:hover {
  background-color: #fff;
  color: var(--accent);
}

.mastering-form .form-control {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 10px 12px;
  font-size: 1rem;
  border-radius: 0;
}

.mastering-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: none;
  border-radius: 0;
}

.mastering-form label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}

.full-width {
  grid-column: span 2; /* textarea ve buton tam genişlik */
}

.mastering-form form {
  max-width: 900px;
  margin: 0 auto; /* ortalasın */
}

.mastering-form textarea {
  resize: vertical;
  min-height: 100px;
}

.mastering-form button {
  padding:12px 16px;
  font-size:18px;
  font-weight:800;
  line-height:1;
  box-shadow: inset 0 -3px 0 0 #fff;
  border-radius: 0px;
  background:#fff; 
  color:#000;
  cursor:pointer; transition:.2s;
  min-width: 160px;   /* her tab için minimum genişlik */
  min-height: 60px; 
}

.mastering-form button:hover {
  background: #000;
  color:#fff;
  transform: translateY(-1px);
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.tab-btn {
  flex: 1;
  max-width: 200px;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: background 0.3s;
}

.tab-btn.active {
  background: #000;
  color: #fff;
}


.tab-btn:hover{
  padding:12px 16px;
  font-size:18px;
  font-weight:800;
  line-height:1;
  border-radius: 0px;
  background:#000; 
  color:#fff;
  cursor:pointer; transition:.2s;
}

.tab-content {
  display: none;
  opacity: 0;
}

.tab-content.active {
  display: block;              /* sadece aktif görünür */
  animation: tabFadeIn 0.5s ease forwards;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(0px); }
  to   { opacity: 1; transform: translateY(0); }
}



/* Dropzone alanı */
.dropzone {
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: 0px;
  padding: 22px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  transition: border-color .2s, background .2s, transform .2s;
  cursor: pointer;
}
.dropzone:hover,
.dropzone.dz-hover {
  border-color: var(--accent, #ff7a00);
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}
.dropzone .dz-icon {
  font-size: 34px;
  margin-bottom: 6px;
  opacity: .9;
}
.dropzone .dz-text strong { color: var(--accent, #ff7a00); }
.dropzone .dz-hint {
  font-size: .85rem;
  opacity: .75;
  margin-top: 6px;
}

/* Dosya listesi */
.dz-files {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.dz-file {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0px;
  padding: 12px 16px;
  font-size: .9rem;
  animation: dzFade .18s ease both;
}
.dz-file small { opacity: .8; }

/* Dosya satırı ve aksiyonlar */
.dz-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dz-actions {
  display: flex;
  gap: 4px;
}
.dz-actions button {
  all: unset;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 6px;
  border-radius: 3px;
  color: #fff;
  opacity: .7;
  transition: background .2s, opacity .2s;
}
.dz-actions button:hover {
  background: rgba(255,255,255,.15);
  opacity: 1;
}

/* Progress bar */
.dz-progress {
  margin-top: 10px;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 0px;
  overflow: hidden;
}
.dz-progress div {
  height: 100%;
  width: 0;
  background: limegreen;
  transition: width .2s linear;
}

/* Hata mesajı */
.dz-error {
  color: #ffb3b3;
  font-size: .85rem;
  margin-top: 6px;
  min-height: 1em; /* layout zıplamasın */
}

/* Fade-in animasyonu */
@keyframes dzFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  animation: fadeInPopup 0.5s ease forwards;
}
@keyframes fadeInPopup {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.popup-box {
  background: #111;
  color: #fff;
  padding: 24px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;

  transform: scale(0.9);
  animation: scaleInPopup 0.4s ease forwards;
}
@keyframes scaleInPopup {
  from { transform: scale(0.9); }
  to   { transform: scale(1); }
}
.popup-box h3 { margin-bottom: 16px; }
.popup-box button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: var(--accent, #ff7a00);
  color: #fff;
  cursor: pointer;
}

.dz-upload.bounce-warning i {
  color: #ff7a00; /* uyarı rengi */
  animation: bounceUpDown 0.3s ease infinite;
}

@keyframes bounceUpDown {
  0%, 100% { transform: translateY(6px); }
  50% { transform: translateY(-6px); }
}

/* Telefon inputunun kutusu da diğer inputlarla aynı genişlik olsun */
.iti {
  width: 100%;
}
.iti input {
  width: 100%;
  background: rgba(255,255,255,0.08); /* senin diğer inputlara uyumlu arka plan */
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0px;
  padding: 10px 12px 10px 52px; /* sola bayrak + alan kodu için boşluk */
  font-size: 1rem;
}

/* Dropdown menü koyu tema */
.iti__country-list {
  background: #222;            /* siyah/koyu gri */
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.iti__country-list .iti__country:hover {
  background: rgba(255,255,255,0.1);
}

/* Bayrak ve dial code da beyaz yazı */
.iti__selected-dial-code {
  color: #fff;
}

.detail-row td {
  padding: 0 !important;
  border: 0;
}

/* Başlangıçta kapalı; yükseklik animasyonu max-height ile */
.detail-content {
  max-height: 0;
  overflow: hidden;
  background: #2b2b2b;
  transition: max-height .35s ease, padding .25s ease, opacity .25s ease;
  padding: 0 16px;
  opacity: 0;
  visibility: hidden;
}

/* Açıkken dikey padding verilecek; max-height değeri JS’ten ayarlanıyor */
.detail-content[aria-hidden="false"] {
  max-height: 1000px; /* yeterince büyük değer */
  padding-top: 16px;
  padding-bottom: 16px;
  opacity: 1;
  visibility: visible;
}

/* ÖNEMLİ: Eski kuralları devre dışı bırak
   .detail-row { display:none; }  // varsa KALDIR
   .detail-content.open {...}     // varsa KALDIR
   .detail-row.open .detail-content {...} // varsa KALDIR
*/



nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  padding: 15px 0;
  text-align: center;
}

.mobile-nav a {
  padding: 10px 0;
}

.hizmetler-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 15px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.hizmetler-scroll-container{
    
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.hizmetler-container::-webkit-scrollbar {
  display: none;
}

.hizmetler-wrapper {
   padding: 0rem 15rem;
  overflow: hidden;
}

.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 0;
}


.hizmet-kart {
  padding: 25px;
  border:1px solid;
  transition: transform 0.3s ease;
}

.hizmet-kart:hover {
  transform: translateY(-5px);
  
}

.hizmet-kart h3 {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 15px;
}

.ikon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
  opacity: 0.9;
}

.fiyat {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.icerik {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.social-icons{

display: none;
}

.swiper {
  width: 100%;
  height: 100vh;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
   position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Başlık bloğu */

/* Açıklama bloğu */
.slider-desc {
 position: absolute;
    bottom: 5rem;
    justify-self: center;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0px;
    font-weight: 400;
    max-width: 80rem;
    line-height: 30px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.slide-content {
    position: absolute;
  top: 0;
  left: 0;
  padding: 50px;
  height: 100%;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}


.slide-content h2 {
  font-size: 6.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
  animation: slideDownFade 1s ease-out forwards;
  animation-delay: 0.1s; /* İsteğe bağlı gecikme */
}

.slider-heading{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 768px;
    color: white;
    text-align: center;
    display: inline-block;
    justify-self: anchor-center;
}

.slide-content h2,
  .slide-content p {
    margin: 0;
  }

.animate-h2 {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.6s ease;
}

.animate-h2.active {
  opacity: 1;
  transform: translateY(0);
}


.about-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hakkimizda-text {
  flex: 0 0 60%;   /* yazıya %60 alan */
  color: #fff;
  padding-right: 20px;
  max-width: 768px; /* hem başlık hem yazı aynı genişlik */
  margin: 0 auto;   /* ortalamak için */
}

.hakkimizda-text h2 {
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 20px;
  word-break: keep-all;  /* kelimeyi bölme */
}

.hakkimizda-text div,
.hakkimizda-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #ccc;
  max-width: 768px;
  justify-self: center;
}


.about-section .hakkimizda-img {
  flex: 0 0 40%;   /* görsele %40 alan */
  max-width: 40%;
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;  /* sağ boşluk */
}

.hakkimizda-img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}




/* İçerik genişliği */
.ir-container{
  width: min(var(--ir-maxw), 92vw);
  margin-inline: auto;
}

/* Başlık */
.ir-heading{
  padding: 0 0 20px 0 ;
  font-size: clamp(22px, 3.2vw, 36px);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Sol görsel + sağ metin satırı */
.ir-row {
  display: grid;
  grid-template-columns: auto 1fr;   /* solda resim, sağda yazı */
  gap: 40px;                         /* aradaki boşluk */
  align-items: start;
}

/* Sol: görsel */
.ir-media{
  margin-left: 50px;
  width: min(var(--ir-media-width), 100%);
  flex-shrink: 0;   
  overflow: hidden;
  background: #111; /* görsel yüklenmezse */
}

.ir-media img {
  display: block;
  width: 100%;
  height: 600px;
  border-radius: 7px;
  object-fit: cover;
}

.ir-copy {
  max-width: 600px;   /* yazı çok genişlemesin */
}
.ir-copy p {
  line-height: 1.6;
  margin-bottom: 1em;
}

/* Sağ: metin alanı */
.ir-copy h3{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #fff;
}
.ir-copy p{
  margin: 0 0 12px;
  line-height: 1.6;
  opacity: .9;
}
.ir-bullets{
  margin: 0; padding-left: 18px;
  opacity: .9;
}
.ir-bullets li{ margin-bottom: 6px; }

/* Erişilebilirlik için gizli altyazı */
.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}


/* Arkaplan ve genel */
#gear-section { color:#fff; padding:48px 0; }
.gear-layout.v2{
  max-width: none;         /* 1200px sınırını kaldır */
  width: 100%;
  margin: 0 auto;
  padding-inline: 24px;    /* kenarlardan küçük bir nefes */
}

/* Üst başlık alanı */
.gear-header { display:flex; justify-content:center; margin-bottom:28px; }
.gear-tabs { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }

/* Küçültülmüş kategori butonları */

/* 4 ve üzeri item → sabit 4 kolon düzen */
.gear-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

/* 3 item → ortalanmış 3’lü */
.gear-grid.center-3 {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

/* 2 item → ortalanmış 2’li */
.gear-grid.center-2 {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

/* 1 item → tam ortalı */
.gear-grid.center-1 {
  grid-template-columns: 1fr;
  justify-content: center;
}

/* Kart genişliği sabit kalsın diye */
.gear-grid.center-1 .gear-card,
.gear-grid.center-2 .gear-card,
.gear-grid.center-3 .gear-card {
  max-width: 500px;  /* İstersen 300-350 arası değiştirilebilir */
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================
   KARTLARIN KÜÇÜK KALMA SORUNUNU ÇÖZEN BOYUT AYARLARI
   Mevcut düzen bozulmadan yalnızca kartlar büyütülüyor
   =========================================== */

/* 3 item → daha büyük kartlar */
.gear-grid.center-3 {
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  gap: 28px;
}

.gear-grid.center-3 .gear-card {
  max-width: 620px;
}

/* 2 item → çok daha büyük kartlar */
.gear-grid.center-2 {
  grid-template-columns: repeat(2, minmax(420px, 1fr));
  gap: 32px;
}

.gear-grid.center-2 .gear-card {
  max-width: 700px;
}

/* 1 item → mümkün olan en geniş */
.gear-grid.center-1 {
  grid-template-columns: 1fr;
}

.gear-grid.center-1 .gear-card {
  max-width: 900px;
}


/* =======================================================
   YALNIZCA 2560px ve üzeri ekranlar için geniş ekran düzeni
   ======================================================= */
@media (min-width: 2560px) {

  /* 4 kolon düzeninde genişlik çok açılmasın */
  .gear-grid {
    max-width: 1800px; /* 2560px için ideal */
    margin-left: auto;
    margin-right: auto;
  }

  /* 3'lü dizilim */
  .gear-grid.center-3 {
    max-width: 1500px;
  }

  /* 2'li dizilim */
  .gear-grid.center-2 {
    max-width: 1100px;
  }

  /* 1'li dizilim */
  .gear-grid.center-1 {
    max-width: 700px;
  }
}

/* Geniş ekranlarda (1920 civarı) 2'li grid'i ortaya topla */
@media (min-width: 1700px) {
  .gear-grid.center-2 {
    max-width: 1200px;   /* İki kart + gap için mantıklı genişlik */
    margin-left: auto;
    margin-right: auto;
    /* gap aynen kalsın (20px), kart boyutuna dokunmuyoruz */
  }
}

/* Kart */
.gear-card{
  background: #111;
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.gear-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}

/* Görsel alanı */
.gear-card__media{
  position: relative;
  margin: 0;
  aspect-ratio: 16/10;            /* tutarlı yükseklik */
  background: #1a1a1a;
}
.gear-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}



/* Alt gradient gölge – yazıyı okunur kılar */
.gear-card__shade{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}

/* Alt başlık (fotoğrafın o ekipmana ait olduğu net) */
.gear-card__caption{
  position: absolute; 
  left: 12px; 
  right: 12px; 
  bottom: 10px;
  color: #fff; 
  font-weight: 800; 
  font-size: 18px; 
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,.7);
  white-space: normal; 
  overflow: visible; 
  text-overflow: unset;
  word-break: break-word;
}


/* Kategori rozeti (opsiyonel ama aidiyeti güçlendirir) */
.gear-card__chip{
  position:absolute; 
  top:10px; 
  left:10px;
  background: #000;
  color:#fff;
  padding:6px 10px;
  font-size:16px; 
  font-weight:700;
}

.gear-tab{
  padding:12px 16px;
  font-size:18px;
  font-weight:800;
  line-height:1;
  box-shadow: inset 0 -3px 0 0 #fff;
  border-radius: 0px;
  background:#fff; 
  color:#000;
  cursor:pointer; transition:.2s;
  min-width: 160px;   /* her tab için minimum genişlik */
  min-height: 60px; 
}

.gear-tab:hover{
  background:#000; 
  color:#fff;
  cursor:pointer; transition:.2s;
}

.gear-tab.active{ background:#000; 
color:#fff;
    
}

/* Alt grid: sol liste + sağ foto */
.gear-body { }
.gear-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0; left: 0; right: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}

.gear-content.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Liste tipografisi */
.gear-item{
  font-size:22px; font-weight:700; line-height:1.35;
  margin:0 0 18px; color:#fff;
  overflow-wrap:break-word; word-break:break-word;
}

/* Foto galeri (sağ) */
.gear-photos{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-content:start;
}
.gear-photo{ margin:0; border-radius:8px; overflow:hidden; background:#1b1b1b; }
.gear-photo img{
  display:block; width:100%; height:220px; object-fit:cover;
}




/* Kartı tıklanabilir yap */
.gear-card__link { position: absolute; inset: 0; z-index: 2; }

/* Tam ekran lightbox iskeleti */
.gear-lightbox{
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.8);
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.gear-lightbox[aria-hidden="false"]{
  opacity: 1; pointer-events: auto;
}

.gear-lightbox__dialog{
  position: relative;
  width: min(96vw, 1400px);
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
}

.gear-lightbox__img{
  max-width: 96vw;
  max-height: 86vh;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Caption ve kontroller */
.gear-lightbox__caption{
  color: #fff; 
  text-align: center;
  font-weight: 700; 
  font-size: 30px;
  line-height: 1.3; 
  opacity: .9;
}

.gear-lightbox__close{
  position: absolute; top: 10px; right: 12px;
  background: rgba(0,0,0,.5); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px; padding: 6px 10px; font-size: 18px;
}


.gear-lightbox__backdrop{
  position: absolute; inset: 0;
}


/* Daha özel kurallar altta */
#Digital p {
  font-size: 4rem;
  color: #fff;
}

#Monitoring p {
  font-size: 4rem;
  color: #fff;
}

  .ref-section{
    height: 50vh;
    padding-top: 28px;
    padding-bottom: 28px;
    
  }
  
  
.ref-list{
    display: flex;
    flex-direction: column;      /* tek sütun */
    gap: 14px;
    max-width: 1080px;           /* sayfa genişliğine göre 960–1200 arası ideal */
    margin: 0 auto;              /* ortala */
    width: 100%;
  }
 
.track-card{
    position: relative; /* badge için referans */
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 14px;   /* sağ üstte badge için fazladan boşluk ayırmıştık; gerek kalmadı */
  padding-right: 112px;           /* badge'e yine alan kalsın, başlık taşmasın */
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0;
}
  
  .card-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
.track-card:hover{ 
    transform:translateY(-2px); 
    background:#131313;
}

.track-card.active{
  outline: 2px solid var(--accent);
  position: relative;
  border:0px;
}

.track-card.active::before{
  content: "";
  position: absolute;
  width: 5px;
  background: var(--accent);
}

.title{
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.genre-badge{
  position: absolute;
  top: 5px; right: 5px;
  padding: 6px 10px;
  background: var(--accent); /* accent taban */
  color: #fff;
  font-size: 11px; font-weight: 800; line-height: 1;
  border-radius: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 1; visibility: visible;
}

.track-play-btn {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.track-play-btn:hover {
  background: #e46d00; /* accent koyusu */
}

/* ALT SABİT PLAYER */
.site-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -200px;
  background: var(--panel);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0,0,0,.35);
  z-index: 998;
  transform: translateY(100%);
  transition: transform .18s ease;
}
.site-player.show {
    bottom: 0; /* açıldığında görünsün */
  transform: translateY(0);
}

.sp-inner {
  padding: 12px;
}

/* Waveform alanı */
.sp-wavewrap {
  position: relative;
  height: 120px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0a0e12;
  overflow: hidden;
}
.sp-wave {
  position: absolute;
  inset: 0;
}
.sp-wave.over {
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Parça bilgileri */
.sp-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 2px 8px 2px;
}
.sp-title {
  font-weight: 900;
  font-size: 17px;
}
.sp-genre {
  color: var(--muted);
  font-size: 13px;
}

/* Kontroller */
.sp-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
}
.sp-controls .left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: #0f1419;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .2px;
}
.btn:hover {
  filter: brightness(1.08);
}
.btn.ghost {
  background: transparent;
}
.btn.toggle {
  width: 64px;
  text-align: center;
}
.bypass {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
}
.lab {
  color: var(--muted);
  font-size: 12px;
}
.time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-left: 6px;
}

#gallery h2 {
  text-align: center;
  font-size: 4rem; /* boyutu istersen artırabilirsin */
  margin-bottom: 40px;
  color: #fff;
  padding:2rem 0rem 0rem;
}

#gallery { padding: 32px 16px; }
.g-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

#ref-tracks h2 {
  text-align: center;
  font-size: 4rem; /* boyutu istersen artırabilirsin */
  margin-bottom: 40px;
  color: #fff;
  padding:2rem 0rem 0rem;
}

.g-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;            /* koyu temaya uyum */
}

/* === GALLERY LIGHTBOX === */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.gallery-lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.gl-backdrop {
  position: absolute;
  inset: 0;
}

.gl-dialog {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gl-img {
  max-width: 95vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.gl-caption {
  margin-top: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  max-width: 700px;
}

.gl-close {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 28px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.gl-close:hover {
  background: rgba(255,255,255,0.2);
}

.g-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;         /* istersen 1/1 yap */
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .35s ease, opacity .35s ease;
}

.g-item:hover .g-img { transform: scale(1.03); }

.g-cap {
  position: absolute;
  left: 10px; bottom: 10px;
  padding: 6px 10px;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,.55);
  border-radius: 8px;
  border-left: 3px solid #ff7a00; /* accent */
}

.g-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  padding: 28px 0;
}

/* Lightbox animasyonu */
.lightbox{
  display:none;                /* JS açıp kapatacak */
  position:fixed; inset:0;
  background:rgba(0,0,0,.85);
  align-items:center; justify-content:center;
  z-index:9999;

  /* anim başlangıç değerleri */
  opacity:0; transform:scale(.96);
  transition: opacity .28s ease, transform .28s ease;
}
.lightbox.show{
  display:flex;                /* görünürken flex’e geçsin */
  opacity:1; transform:scale(1);
}
.lightbox-img{
  max-width:90%; max-height:90%;
  box-shadow:0 0 20px rgba(0,0,0,.5);
}

/* kapatma butonu örnek (varsa) */
.lightbox .close{
  position:absolute; top:20px; right:24px;
  color:#fff; font-size:32px; cursor:pointer;
  background:transparent; border:0;
}

.footer-trio{
  color: var(--ft-fg);
  background: var(--ft-bg);
  border-top: 1px solid var(--ft-border);
}

.footer-trio .ft-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 20px;
  display: grid;
  grid-template-columns: 1fr;     /* mobile */
  gap: 28px;
  align-items: center;
  text-align: center;
}

/* Desktop: 3 kolon, orta daralmasın */
@media (min-width: 980px){
  .footer-trio .ft-wrap{
    grid-template-columns: 1fr auto 1fr;
    text-align: initial;
  }
  .ft-left  { justify-self: start; }
  .ft-center{ justify-self: center; text-align: center; }
  .ft-right { justify-self: end; }
}

.form-grid .full-width {
  grid-column: span 2; /* textarea, buton gibi geniş alanlar */
}



/* Etiket (Phone / Email) */
.ft-label{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ft-muted);
}

/* Büyük link (telefon / e-posta) */
.ft-big{
  display: inline-block;
  color: var(--ft-fg);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: clamp(18px, 3.2vw, 28px);
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 4px;
}
.ft-big:hover{ opacity: .9; }

/* Logo merkez */
.ft-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 10vw, 140px);
  height: clamp(72px, 10vw, 140px);
  overflow: hidden;
}
.ft-logo img{
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.logo-fallback{ font-weight: 700; }

/* Açıklama */
.ft-desc{
  max-width: 44ch;
  margin: 12px auto 14px;
  color: #fff;
  line-height: 1.5;
}

/* Sosyal ikonlar */
.ft-social{
  display: flex;
  gap: 10px;
  justify-content: center;
}
.ft-social a{
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--ft-ring);
  color: var(--ft-fg); text-decoration: none; opacity: .95;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}
.ft-social a:hover{
  transform: translateY(-2px);
  opacity: 1;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.3);
}

a .fa-instagram {
  text-decoration: none;
}
.ft-social i{ font-size: 18px; line-height: 1; }

/* Alt şerit */
.ft-bottom{
  max-width: 1200px;
  margin: 6px auto 0;
  padding: 16px 20px 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap;
  gap: 12px;
  align-items: center; justify-content: space-between;
}
.ft-legal{
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.ft-legal a{
  color: #fff;
  text-decoration: none;
}
.ft-legal a:hover{ opacity: 1; }
.ft-legal .dot{ 
    color: #fff; 
}
.ft-copy{ margin: 0; color: #fff; font-size: 14px; }

/* Küçük ekran optimizasyonları */
@media (max-width: 979.98px){
  .ft-left, .ft-right{ text-align: center; }
  .ft-big{ border: none; }
}


.intro-section {
  position: relative;
}

.intro-content {
  background: #111; /* koyu arka plan */
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Mor-mavi glow efekti */
.intro-content::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center,
  rgba(255,94,20,0.8),
  rgba(255,94,20,0.4) 40%,
  transparent 80%
);

  filter: blur(60px);
  z-index: 0;
}
.intro-content::after {
  content: "";
  position: absolute;
  right: 100px;
  top: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,94,20,0.4), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.intro-subtitle {
  margin-top:2rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: #aaa;
  z-index: 1;
  position: relative;
}

.intro-title {
  font-size: 2.2rem;
  line-height: 1.3;
  z-index: 1;
  position: relative;
}

h2.intro-title {
  color:#fff;
}

.highlight {
  position: relative;
  z-index: 1;
}
.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.35em;
  background: #b4ff00; /* fosforlu yeşil highlight */
  z-index: -1;
}

.intro-quote {
  font-size: 1.05rem;
  text-align: left;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  z-index: 1;
  position: relative;
}

/* Play butonu */
.intro-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  color: #000;
  transition: all 0.3s ease;
  z-index: 2;
}
.intro-play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

/* İçerik üstte kalması için */
.intro-content > div {
  position: relative;
  z-index: 2;
}



@media (max-width: 768px) {
  nav {
    display: none;
  }
  .title {
  white-space: normal;         /* Satır kaydırmayı açar */
  word-break: break-word;      /* Uzun kelimelerde satır kaydırmaya izin verir */
  overflow-wrap: break-word;   /* Alternatif tarayıcı desteği için */
  max-width: 100%;
  display: block;
}


.mastering-form {
  padding: 20px;
}
  
    .topbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
  }
  
    .logo-img-mobile {
      
  max-height: 96px;
  object-fit: contain;
  margin: 10px auto;
  display: block;
 padding: 8px 16px;
 border-radius: 7px;
    background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

  .desktop-menu {
    display: none;
  }
  
    .ref-section {
    height: auto;
    padding: 12px;
  }
  
  
  .track-card {
    min-width: calc(50% - 6px);
    overflow: hidden;
  box-sizing: border-box;
  }
  .sp-wavewrap {
    height: 96px;
  }
  .sp-title {
    font-size: 16px;
  }
  
  .ref-list{ flex-direction:column; gap:10px; }
  .track-card{ min-width:auto; width:100%; }


/* Player açıkken içerik alta taşınsın */
body.has-player {
  padding-bottom: 170px;
}

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 30px;
    left: 20px;
    cursor: pointer;
    z-index: 9999;
  }


.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
  }

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 10000;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 20px;
}

.mobile-menu.active {
  display: flex; /* block yerine flex */
}

  .mobile-menu.show {
   display: block;
  }

  #mobileNav .mobile-content {
      display: flex;
  flex-direction: column;
  position: absolute ;
  top: 0 ;
  left: 0 ;
  height: 100% ;
  width: min(86vw, 360px) ;
  background: var(--menu-bg, #111) ;
  overflow-y: auto ;
  -webkit-overflow-scrolling: touch ;
  transform: translateX(-100%) ;
  transition: transform .24s ease-out ;
  will-change: transform ;
}

#mobileNav.active .mobile-content {
  transform: translateX(0) !important;
}

/* Show overlay */
#mobileNav.show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

#mobileNav .mobile-nav{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;                /* linkler arası boşluk */
  padding: 0px 24px;       /* iç boşluk */
  z-index: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
  }
  
  #mobileNav .mobile-nav a{
  display: block;
  text-decoration: none;
  padding: 6px 0;
}


#mobileNav .social-icons{
  position: relative !important;   /* global 'absolute/fixed' stilini sıfırla */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin-top: auto;                /* altta kalmasını sağlar */
  z-index: 0;
}

#mobileNav .social-icons i{
  position: static !important;
  display: block;
  font-size: 20px;
  line-height: 1;
}

#mobileNav .social-icons a{
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

  .mobile-nav a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  

  .mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }

  .mobile-nav.show {
    display: flex;
  }
  
  .mobile-header{
  position: sticky; top: 0;
  background: var(--menu-bg, #111);
  padding: 12px 16px;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#mobileNav .lang-switch{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding:12px 16px;
  position: sticky; top: 20px;  
  transition: opacity .2s ease;
  z-index: 1;
  margin-left: inherit;
}

#mobileNav .lang-switch .lang-btn{
  padding:8px 12px;
  font-size:14px;
  background:transparent;
  color:inherit;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease !important;
}

.lang-btn:hover{ transform: translateY(-1px); }
.lang-btn.active{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
  font-weight: 600;
}

  .logo {
    flex: none;
    margin: auto;
  }
  
  .swiper {
  width: 100%;
  height: 50vh;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 20px;
  }

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.slider-heading{
    display: block;
    left: 0%;
    max-width: 768px;
    justify-self: center;
}

.slider-heading h2 {
    font-size: 2.8em;
    color: white;
    margin-bottom: 0px;
  }
  
 .slider-desc {
 position: absolute;
    bottom: 1rem;
    color: #fff;
    font-size: 10px;
    text-align: left;
    letter-spacing: 0px;
    font-weight: 500;
    max-width: 22rem;
    line-height: 20px;
}

  /* Kartları saran yapı */
.hizmetler-wrapper {
  overflow-x: auto;
  padding: 0 15px;
}

.hizmetler-scroll-container {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.hizmetler-scroll-container::-webkit-scrollbar {
  display: none;
}

.hizmet-kart {
  padding: 25px;
  border:1px solid;
  transition: transform 0.3s ease;
}

  .hizmetler-wrapper::-webkit-scrollbar {
    display: none; /* scroll bar gizleniyor */
  }
  
   .about-section .container {
   flex-direction: column-reverse; /* önce görsel, sonra yazı */
    text-align: center;
    padding: 16px 12px;
    gap:20px
  }
  
   .about-section .hakkimizda-text {
    padding: 1rem;                /* mobilde rahat okuma */
    max-width: 100%;
  }
  
   .hakkimizda-text h2 {
    font-size: 2rem;
    text-align: left;
  }

  .hakkimizda-text p {
    font-size: 14px;
    text-align: left;
  }

  .about-section .hakkimizda-img {
    justify-content: center;
    padding-right: 0;
    max-width: 100%;
  }
  
  .hakkimizda-img img {
    max-width: 100%;
    padding: 1rem;
  }
  
  .ir-media{
  margin: 0 0 0 0;
  width: min(var(--ir-media-width), 100%);
  flex-shrink: 0;   
  overflow: hidden;
  background: #111; /* görsel yüklenmezse */
}

.ir-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px;
  object-fit: cover;
}

.ir-copy {
  max-width: 600px;   /* yazı çok genişlemesin */
}
.ir-copy p {
  line-height: 1.6;
  margin-bottom: 1em;
}

/* Sağ: metin alanı */
.ir-copy h3{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #fff;
}
.ir-copy p{
  margin: 0 0 12px;
  line-height: 1.6;
  opacity: .9;
}
.ir-bullets{
  margin: 0; padding-left: 18px;
  opacity: .9;
}
  
  .ir-row{
    grid-template-columns: 1fr;
  }
  .ir-media{
    width: 100%;
  }

   .mobile-menu.show .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

 

.social-icons a {
  font-size: 24px;
  color: white;
  transition: color 0.3s ease;
}

 .social-icons a:hover {
    color: #dfa26b;
  }

 /* Kapsayıcılar */
  #gear-section {
    display: block;          /* satıra sığmayan flex sorunlarını önle */
    height: auto;            /* 100vh yerine akışa uysun */
  }
  
  .gear-grid.center-1 .gear-card,
  .gear-grid.center-2 .gear-card,
  .gear-grid.center-3 .gear-card {
    max-width: 100% !important;  /* mobilde tam genişlik */
  }

  .gear-grid.center-1,
  .gear-grid.center-2,
  .gear-grid.center-3 {
    display: grid;
    grid-template-columns: 1fr !important; /* mobilde tek sütun */
    justify-content: stretch !important;
    justify-items: stretch !important;
  }
  
  .gear-layout {
    flex-direction: column; 
    gap: 20px;
  }

  /* Sekmeler: üstte yatay kaydırılabilir şerit (thumb/segmented feel) */
  /* TAB BAR (mobilde yatay kayar) */
  .gear-tabs {
    display: flex;
    flex-wrap: nowrap;        /* yan yana diz, alt satıra geçmesin */
    overflow-x: auto;         /* sağa sola kaydırılabilir */
    overflow-y: hidden;
    gap: 12px;
    padding: 12px;
    -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
  }

  /* Scrollbar gizle */
  .gear-tabs::-webkit-scrollbar {
    height: 0px;
  }

  /* TAB BUTTON */
  .gear-tab {
    flex: 0 0 auto;            /* genişlik otomatik, sıkışma yok */
    padding: 12px 18px;
    min-width: 160px;          /* her tab en az bu kadar olsun */
    font-size: clamp(1rem, 4vw, 1.25rem);
    text-align: center;
    white-space: nowrap;       /* yazı tek satır kalsın */
  }

  .gear-tab.active {
    border-bottom: 3px solid #fff;
  }
  
   .gear-grid {
    grid-template-columns: repeat(1, 1fr); /* 2 sütun */
  }
  .gear-card__caption{ font-size:16px; }

  /* İçerik alanı: sekmelerin altında tam genişlik */
  .gear-content-wrapper {
    flex: 1 1 auto;
    padding: 14px;
  }
  .gear-content {
    gap: 14px;
  }
  
 .gear-content p {
    font-size: clamp(1rem, 4.2vw, 1.6rem);
    line-height: 1.5;
  }
  
 #gear-section,
#gear-section .gear-layout.v2,
#gear-section .gear-header { overflow: visible; }
  .gear-card__caption{ font-size: 16px; }
  
  #gear-section .gear-header {
    position: sticky;
    top: var(--stickyTop, 0px);     /* sabit header yüksekliği kadar offset */
    z-index: 30;
    top: 80px;
    background: #0f0f0f;            /* arkadaki içerikle karışmasın */
    padding: 10px 0;
    /* İsteğe bağlı: yapıştığında hafif gölge */
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }

  /* Kategori butonları yatay kaydırılabilir kalsın */
  .gear-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0 12px;
  }
  
  #hizmetler h2 {
  font-size: 2.5rem; /* boyutu istersen artırabilirsin */
}
  
  #ref-tracks h2 {
  font-size: 2rem; /* boyutu istersen artırabilirsin */
}

.hakkimizda-text div,
.hakkimizda-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  max-width: 768px;
  text-align: left;
}

.intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-image img {
    margin: 20px auto 0;
  }

/* Daha özel kurallar altta */
#Digital p {
  font-size: 4rem;
  color: #fff;
}

#Monitoring p {
  font-size: 3rem;
  color: #fff;
}

#gallery h2 {
  font-size: 2.5rem; /* boyutu istersen artırabilirsin */
}



.g-grid { 
    grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 16px; }
  

}



/* ========== OVERRIDE PACK — Mobile Drawer & Language Switcher (2025-08-17) ========== */
/* Purpose: Ensure mobile menu is hidden on desktop, animates via opacity/transform (not display),
   and language switcher is centered inside mobile drawer. */

/* Base: overlay container (keep in DOM, hidden by default) */
#mobileNav {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .2s ease !important;
}



a,
a:visited {
  color: #fff !important;           /* beyaz */
  text-decoration: none !important; /* alt çizgi kapalı */
}

a:hover {
  color: #ff5e14 !important;        /* accent hover */
  text-decoration: none !important;
}

