

html, body { height: 100%; }             /* Tam viewport yüksekliği */
body{
  display: flex;
  flex-direction: column;
   overflow-x: hidden; /* yatay scroll çubuğunu gizle */
}
.page-scale{ flex: 1 0 auto; }           /* İçerik alanı */
.site-footer{ margin-top: auto; }        /* Footer’ı alta iter */

/* ------------------------ */
/* GENEL SIFIRLAMA */
/* ------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Padding ve border, kutunun dışında değil içinde sayılır */
}

.page-scale{
  width: 100%;               /* tam genişlikte akış */
  max-width: 1920px;         /* tasarım tabanı */
  margin: 0 auto;            /* yatayda ortala */
  transform: scale(0.9);     /* %90 ölçek */
  transform-origin: top center; /* merkezden küçült */
}

body {
  transform-origin: top center; /* yukarıdan merkeze göre küçült */
  font-family: 'Segoe UI', sans-serif; /* Modern bir yazı tipi */
  background-color: #000;              /* Siyah arka plan */
  color: #fff;                         /* Yazılar beyaz */
  line-height: 1.6;                    /* Satırlar arası boşluk */
}

/* ------------------------ */
/* SABİT ÜST MENÜ (HEADER) */
/* ------------------------ */


/* İçerik kutusu (1356x76 boyutlarında) */
.header-inner {

font-family: 'Inter', sans-serif;
  font-weight: 400;
  width: 1356px;
  height: 76px;
  background-color: #ffffff;       /* Beyaz zemin */
  border-radius: 32px;             /* Yuvarlatılmış köşeler */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 55px;                 /* Sağdan ve soldan içerik boşluğu */
  margin: 0 auto;
  box-sizing: border-box;
}

/* Logo alanı */
.logo {
  margin-top: 0px;          /* Header'a göre yukarıdan 7px boşluk */
  margin-bottom: 21px;       /* Aşağıdan 4px boşluk */
  margin-right: 33px;       /* Sağdan 33px boşluk (header'ın bitişiyle hizalanır) */
}

/* Logo Fotoğraf */
.logo img {
  width: 202px;
  height: 66px;
  display: block; /* alt boşlukları (inline space) engeller */
}
/* Menü yazıları */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 37px;                       /* Menü öğeleri arası boşluk */
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 500;                /* Medium */
  font-size: 16px;
  color: #000000;                  /* Siyah yazı */
}

.nav-menu a {
  display: inline-block;                   /* Kutu davranışı */
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;

  height: 70px;                            /* Header yüksekliği kadar */
  line-height: 76px;                       /* Dikeyde ortalamak için */
  
  margin-left: 20px;                       /* Solunda boşluk (gerekirse ayarla) */
  margin-right: 20px;                      /* Sağında boşluk (gerekirse ayarla) */
}


.logo {
  height: 40px;                             /* Logo yüksekliği */
}

nav ul {
  display: flex;
  gap: 25px;                                /* Menü öğeleri arası boşluk */
  align-items: center;
  list-style: none;                         /* Nokta simgelerini kaldır */
}

nav li {
  font-size: 14px;
}

.phone {
  font-weight: bold;
}

/* ------------------------ */
/* ANA HERO ALANI */
/* ------------------------ */

/* .hero { */
  /* margin-top: 0%;  */
  /* display: flex; */                             
  /* justify-content: space-between; */
  /* align-items: center; */
  /* padding-top: 44px; */                        
  /* padding-bottom: 100px; */
  /* min-height: 100vh; */                         
  /* position: relative; */
  /* overflow: hidden; */
  /* z-index: 1; */
/* } */

/* Radial parlama efekti */

/* .hero::before { */
  /* content: ''; */
  /* position: absolute; */
  /* top: 37%; */
  /* left: 26.33%; */
  /* transform: translate(-50%, -50%); */
  /* width: 1180px; */
  /* height: 1380px; */
  /* background: radial-gradient(79.89% 63.51% at 50% 50%, #000 7.37%, #3AC2BB 14.42%, transparent 30.77%); */
  /* z-index: 0; */
  /* pointer-events: none; */
/* } */

/* .hero-content { */
  /* text-align: center; */
  /* flex: 1; */
  /* max-width: 600px; */
  /* z-index: 2; */
  /* position: relative; */
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: center; */
  /* white-space: pre-line; */
/* } */

/* .hero-content h1 { */
  /* max-width: 900px; */
  /* max-height: 500px; */
  /* color: #fff; */
  /* position: absolute; */
  /* top: -0;  */                          /* Radial’in optik merkezi */
  /* left: 83.5%; */                       /* Sayfa ortası */
  /* transform: translate(-50%, -50%); */  /* Hem yatay hem dikey merkezleme */
  /* font-family: "Sora", sans-serif; */
  /* font-style: normal; */
  /* font-weight: 450; */
  /* font-size: 85px; */
  /* line-height: 90px; */                 /* Satırlar birbirine yapışsın */
  /* letter-spacing: -1px; */              /* Harfler hafif sıkılaşsın */
  /* text-align: center; */
  /* z-index: 2; */
  /* white-space: normal; */               /* <br> ile gelen satır boşluklarını dikkate al */
/* } */

/* .button {   */
  /* text-decoration: none; */
  /* transform: translate(-0%, 300%); */
  /* position: absolute;  */               /* Ürünler Butonu */
  /* top: 90%; */                          /* Radial’in optik merkezi */
  /* left: 70%; */    
  /* display: inline-block; */
  /* background-color: white; */
  /* color: black; */
  /* padding: 10px 30px; */
  /* line-height: 1.5; */
  /* border-radius: 30px; */
  /* font-weight: bold; */
  /* transition: all 0.3s ease; */
  /* text-align: center; */
  /* padding-top: 16px; */
  /* font-family: "Sora", sans-serif; */
  /* font-size: 18px; */
  /* text-align: center; */
/* } */

/* .button:hover {   */                     /* Ürünler Butonu */
  /* background-color: #fff; */
/* } */

/* .hero-image { */
  /* flex: 1; */
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* z-index: 1; */
  /* position: relative; */
  /* right: -90px; */
  /* -webkit-user-drag: none; */   /* Chrome için */
  /* pointer-events: none; */      /* Mouse ile etkileşimi kapatır (seçilmesini önler) */
  /* user-select: none; */         /* Metin/görsel seçimini engeller */
  /* -webkit-user-select: none; */ /* Safari için */
  /* -moz-user-select: none; */    /* Firefox için */
  /* -ms-user-select: none; */     /* Eski IE için */
/* } */

/* .hero-image img { */
  /* max-width: 100%;  */
  /* height: auto; */
  /* object-fit: contain; */
  /* display: block; */
/* } */



/* HAKKIMIZDA KISMI */

/* HAKKIMIZDA BÖLÜMÜ GENEL */

/* Hakkımızda kısmının  kapsayıcısı */

.about-container {
  width: 100%;
  max-width: 1356px;
  margin: 0 auto;       /* Ortala */
  position: relative;   /* Absolute çocuklar buna göre konumlanır */
  min-height: 1080px;   /* Yükseklik sabit */
  padding: 0 40px;      /* Kenarlardan nefes alanı */
}


.about-section {
  position: relative;
  margin-bottom: 0;
  margin-top: auto;
  background: url('../images/about-bg.jpg') no-repeat center -134px;
  background-color: #000000;
  font-family: 'Space Grotesk', sans-serif;
  overflow: hidden;
  width: 100%;
  height: 1080px;
  }
 


/* Ana başlık */
.main-heading h2 {
  position: absolute;
  top: 7%;              /* yüksekliği de yüzde ile alabilirsin */
  left: -14%;             /* ekran genişliğinin %10’u kadar içeri gir */
  font-size: 66px;        /* font boyutu ekran genişliğine göre ölçeklensin */
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: black;
  line-height: 1.1;
  
}


/* “2015” alt başlık */
.sub-heading {
  position: absolute;
  top: 25%;
  left: -13.5%;
  font-size: 46px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  color: black;
}

/* Paragraf metni */
.paragraph {
  position: absolute;
  top: 27%;
  left: -14%;
  width: 620px;
  font-size: 24px;
  line-height: 1.6;
  color: black;
  font-family: 'Space Grotesk', sans-serif;
}

/* Sağ taraftaki vektör açıklamaları */
.vector-text-1 {
  position: absolute;
  top: 9%;
  right: -3%;
  width: 300px;
  font-size: 26px;
  text-align: left;
  color: white;
}

.vector-text-2 {
  position: absolute;
  top: 38.5%;
  right: 2%;
  width: 220px;
  font-size: 26px;
  text-align: right;
  color: white;
}

.vector-text-3 {
  position: absolute;
  top: 72.5%;
  right: 5%;
  width: 200px;
  font-size: 26px;
  text-align: left;  
  color: white;
  line-height: 1.5;
}
.vector-text-4 {
  position: absolute;
  top: 95.5%;
  right: 53%;
  width: 900px;
  font-size: 18px;
  text-align: center;
  color: rgb(0, 0, 0);
  line-height: 1.3;
}

/* Referanslar butonu */
/*
.button2 {
  position: absolute;
  top: 88%;
  left: -15%;
  background-color: black;
  color: white;
  padding: 20px 42px;
  border-radius: 32px;
  font-weight: bold;
  font-size: 26px;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  display: inline-block;
  text-decoration: none;
  
  font-family: "Sora", sans-serif;
  font-size: 18px;
  text-align: center;
}

*/


/* REFERANSLAR SAYFASI*/

.references-section {
  height: 1090px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  background-color: #ffffff;
 box-shadow: inset 0px 4px 80px 80px rgba(0, 0, 0, 0.25);
}

.references-heading {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: -2.88px;
  color: #000;
  text-align: center;
  margin-bottom: 39px;
  margin-top: 55px;
}

.reference-container {
  width: 1801px;
  height: 871px;
  background-color: #000000;
  border-radius: 40px;
  padding: 46px 81px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 0 auto
  
  
 
}

.reference-row {
  display: flex;
  justify-content: space-between;
  gap: 89px; /* logolar arası yatay boşluk */
  margin-bottom: 31px; /* satırlar arası dikey boşluk */
}

.logo-box {
  width: 343px;
  height: 173px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Logo görselleri */
.logo-box img {
  object-fit: contain;
  transition: transform 0.3s ease;
  -webkit-user-drag: none; /* Chrome için */
  pointer-events: none;    /* Mouse ile etkileşimi kapatır (seçilmesini önler) */
  user-select: none;      /* Metin/görsel seçimini engeller */
  -webkit-user-select: none; /* Safari için */
  -moz-user-select: none;    /* Firefox için */
  -ms-user-select: none;     /* Eski IE için */
}

/* Her bir logo için özel boyut ve konum ayarı */

.box1 img { transform: scale(1) translate(0%, -3%); }    /* Jacobs */
.box2 img { transform: scale(1.05) translate(0%, 0%); }     /* Tchibo */
.box3 img { transform: scale(1.15) translate(0%, 0%); }    /* Kaave */
.box4 img { transform: scale(1.05) translate(0%, -5%); }   /* Kahveci */
.box5 img { transform: scale(0.9) translate(2%, 0%); }     /* Fiero */
.box6 img { transform: scale(1.0) translate(0%, 0%); }     /* Maxwell */
.box7 img { transform: scale(1.0) translate(0%, -2%); }     /* Coffedeon */
.box8 img { transform: scale(1.05) translate(0%, -2%); }   /* Novacopulus */
.box9 img { transform: scale(1.0) translate(0%, 0%); }    /* Mayna */
.box10 img { transform: scale(1.0) translate(1%, 0%); }    /* Bg Grup */
.box11 img { transform: scale(0.6) translate(3%, 0%); }  /* Ducat Coffee */
.box12 img { transform: scale(1.0) translate(0%, 0%); }    /* Napoli */
.box13 img { transform: scale(1.05) translate(1%, 8%); }   /* Cafeshots */
.box14 img { transform: scale(1.05) translate(3%, 8%); }  /* Cafe de Bon */
.box15 img { transform: scale(0.8) translate(5%, -8%); }    /* Lavi Gıda */

/* 16 kutuya özel arka plan renkleri */
.box1 { background-color: #006838; }         /* Jacobs */
.box2 { background-color: #003976; }         /* Tchibo */
.box3 { background-color: #ffffff; }         /* Kaave */
.box4 { background-color: #ffffff; }         /* Kahveci */
.box5 { background-color: #C4A867; }         /* Fiero */
.box6 { background-color: #002249; }         /* Maxwell */
.box7 { background-color: #ffffff; }         /* Coffedeon */
.box8 { background-color: #F3F3D7; }         /* Novacapulus */
.box9 { background-color: #ffffff; }         /* Mayna */
.box10 { background-color: #08233E; }        /* BG Grup */
.box11 { background-color: #ffffff; }        /* Ducat */
.box12 { background-color: #ffffff; }        /* Napoli */
.box13 { background-color: #ffffff; }        /* Cafeshots */
.box14 { background-color: #2c2c2c; }        /* Cafe de Bon */
.box15 { background-color: #ffffff; }        /* Lavi Gıda */
.box16 {background-color: #ffffff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
}


                                                                   /* Sertifikalar genel alan */

/* Sertifikalar genel alan */
.certificates-section {
  background-color: #fff;
  padding: 100px 0 120px; /* Alt padding artırıldı */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: inset 0px 4px 80px 80px rgba(0, 0, 0, 0.25); /* Shadow eklendi */
}


.certificates-heading {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 600;
  color: #000;
  margin-bottom: 60px;
  letter-spacing: -2.5px;
}

                                                                   /* Slider - Dış Alan */
.certificates-slider {
  width: 1800px;
  background-color: #000;
  border-radius: 50px;
  padding: 60px 40px;
  position: relative;
  display: flex;
  flex-direction: column; /* Dikey hizalama */
  align-items: center;
  box-shadow: inset 0px 4px 80px 80px rgba(0, 0, 0, 0.25);
  gap: 40px; /* içerik ve butonlar arası boşluk */
}


/* Slider - Sayfalar Arası Wrapper */
.certificates-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content; /* içerik genişliği kadar */
  
}
/* Tek sayfa */
.certificates-page {
  flex: 0 0 100%; /* HER SAYFA EKRANIN TAMAMI KADAR OLSUN */
  display: flex;
  justify-content: center;
  gap: 40px;
}
/* Sertifika Görselleri */
.certificate-img {
  width: 330px;
  height: 480px;
  object-fit: cover;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 0px 10px 40px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  user-select: none;
}

.certificate-img:hover {
  transform: scale(1.08);
}

/* Slider Okları */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #007AFF;
  border: none;
  font-size: 28px;
  cursor: pointer;
  border-radius: 25%;
  padding: 16px 26px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.slider-btn.left {
  left: 55px;
}

.slider-btn.right {
  right: 55px;
}

.slider-btn:hover {
  background-color: #c5c5c5;
}

                                                /* Modal Arka Plan */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}


/* Modal İçerik */
.modal-content {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(255,255,255,0.2);
  transform: scale(1.1);
  transition: transform 0.3s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 60px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

/* Modal Oklar */
.modal-controls {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(255, 255, 255);
  color: rgb(85, 159, 243);
  border: none;
  font-size: 28px;
  padding: 16px 26px;
  border-radius: 25%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

/* Sol ok: Görselin sol kenarında */
#prevPage {
  left: 55%;
  transform: translate(-580px, -50%);
}

/* Sağ ok: Görselin sağ kenarında */
#nextPage {
  right: 55%;
  transform: translate(580px, -50%);
}

.modal-arrow:hover {
  background-color: #b9b9b9;
}

/* İletişim Arka Plan */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  height: 1080px;        /* sabit */
  background: linear-gradient(
    90deg, #000 0.29%, 
    #A5CCA8 35.7%, 
    #5B935E 54.12%, 
    #1C411F 80.08%, 
    #000 88.58%
  );
  padding: 150px 110px 0 80px;  /* üstten 150px sabit boşluk */
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}

/* İletişim kutusu */
.contact-box {
  width: 491px;
  height: 670px;
  background-color: #000;
  border-radius: 20px;
  padding: 50px 40px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0px 4px 80px 80px rgba(0, 0, 0, 0.25) inset;
  box-sizing: border-box;
  margin-top: 50px;  /* sabit boşluk */
}

/* Başlık ve Alt Başlık */
.contact-title {
  font-size: 28px;                      /* Başlık boyutu büyütüldü */
  font-weight: 800;                     /* Extra bold yazı kalınlığı */
  margin-bottom: 10px;                 /* Alt boşluk */
}

.company-name {
  font-size: 24px;                      /* Firma adı boyutu büyütüldü */
  margin-bottom: 30px;                 /* Alt boşluk */
  color: #ccc;                          /* Gri renk tonu */
}

/* Bilgi Satırları */
.contact-item {
  display: flex;                        /* İkon ve metni yatay diz */
  align-items: center;                  /* Üst hizalama */
  gap: 20px;                            /* İkon ile yazı arası mesafe */
  margin-bottom: 22px;                 /* Bilgiler arası boşluk */
  font-size: 20px;                     /* Metin boyutu artırıldı */
  line-height: 1.4;                     /* Satır yüksekliği */

}

.contact-item img {
  width: 53px;                          /* İkon genişliği */
  height: 53px;                         /* İkon yüksekliği */
  object-fit: contain;                 /* Görselin oranını koruyarak sığdır */
  margin-top: 3px;                      /* Dikey hizalama için boşluk */
}

/* Sosyal Medya İkonları Alanı */
.social-icons {
  display: flex;                        /* Yatay dizilim */
  justify-content: flex-start;         /* Sola hizalama */
  align-items: flex-end;               /* Alta hizalama */
  margin-top: 95px;                    /* Kutuyla ikonlar arası boşluk */
  gap: 30px;                            /* İkonlar arası boşluk */
}

.social-icons a {
  display: flex;
  flex-direction: column;              /* Alt alta diz */
  align-items: center;
  text-decoration: none;               /* Altı çizili olmasın */
}

/* Instagram ve Alt Click İkonu Birlikte */
.icon-stack {
  position: relative;                  /* Üst üste bindirme için gerekli */
  width: 66px;                         /* Genişlik */
  height: 66px;                        /* Yükseklik (ikon + tıklama simgesi) */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.icon-stack .social-icon {
  width: 66px;                         /* Instagram ikonu boyutu */
  height: 66px;
  position: relative;
  z-index: 2;                          /* Tıklama ikonunun altında kalmasın */
}

.icon-stack .tap-icon {
  position: absolute;
  top: 50px;       
  left: 25px;                    /* Instagram ikonu altına hizalanır */
  width: 50px;
  height: 50px;
  z-index: 1;
  opacity: 0.75;
  filter: brightness(0) invert(1);     /* Rengi tam beyaz yapar */
  color: white;
}

.icon-stack .tap-icon:hover {
  transform: scale(1.2);               /* Hover'da büyüme efekti */
}

/* Diğer Sosyal Medya İkonları */
.social-icons img {
  width: 66px;                          /* İkon genişliği büyütüldü */
  height: 66px;                         /* İkon yüksekliği */
  cursor: pointer;                     /* Üzerine gelince el simgesi */
  transition: transform 0.2s ease;     /* Hover geçişi */
}

.social-icons img:hover {
  transform: scale(1.1);               /* Hover'da büyütme efekti */
}

/* Harita Kutusu */
.map-container {
  position: relative;
  width: 1239px;                        /* Harita genişliği */
  height: 781px;                        /* Harita yüksekliği */
  border-radius: 20px;                 /* Köşeleri yuvarlat */

  flex-shrink: 0;                      /* Küçülmeye izin verme */
  transform: translateX(40px);         /* Sağ tarafa 40px kaydır */
}


/* Wrapper boşluğu */
.contact-details-wrapper {
  margin-top: 90px;
}

        /* Harita üstündeki buton mavi */
.map-button {
  position: absolute;                 /* Harita kutusuna göre konumlandırma */
  top: -40px;                         /* Haritanın üst kısmının biraz yukarısına çıkar */
  left: 50%;                          /* Ortalamak için sola %50 hizala */
  transform: translateX(-50%);        /* Gerçek ortalamayı sağla */

  display: inline-flex;               /* Buton içeriğini hizalamak için */
  align-items: center;
  justify-content: center;

  padding: 24px 56px;                 /* İç boşluk (yukarı-aşağı / sağ-sol) */
  gap: 10px;                          /* Metin ve ikon arası boşluk */

  border-radius: 40px;                /* Oval köşeler */
  background: rgba(46, 137, 255, 0.95); /* Mavi tonlu arkaplan */

  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  text-decoration: none;

  z-index: 9999;                      /* Her şeyin üzerinde olsun */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Hafif gölge efekti */
  transition: transform 0.2s ease;

  pointer-events: auto;              /* Tıklamayı engellemesin */

  /* Gerekirse overflow'a izin ver (eğer üst kapsayıcıda görünmüyorsa) */
}


.map-button:hover {
  transform: translateX(-50%) scale(1.05);  /* Hover’da büyüme + merkez koruma */
}

/* El tıklama ikonu */
.map-tap-icon {
  position: absolute;         /* Butonla üst üste bindirmek için */
  top: 15px;                  /* Butonun biraz altına */
  left: 50%;                  /* Yatay ortalama */
  transform: translateX(-50%);/* Gerçek ortalama */
  
  width: 35px;
  height: 46px;
  opacity: 0.85;

  z-index: 9999;              /* Buton gibi üstte kalsın */
  pointer-events: none;       /* Tıklamaya engel olmasın */

  transition: transform 0.3s ease;
}

.map-button:hover + .map-tap-icon {
  transform: translateX(-50%) scale(1.05); /* Hover'da büyüsün */
}


                                                            /* Footer Genel */
.site-footer {
  width: 100%;
  background-color: #202020; /* Koyu gri arka plan */
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 30px;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  padding: 0;
}

.footer-nav li {
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.footer-nav li:hover {
  opacity: 0.7;
}

.footer-nav a {
  text-decoration: none;     /* Alt çizgi yok */
  color: inherit;            /* Yazı rengi sabit kalır */
  pointer-events: auto;      /* Tıklanabilir */
  transition: none;          /* Geçiş efekti yok */
}

.footer-nav a:hover {
  color: inherit;            /* Üzerine gelince renk değişmesin */
  text-decoration: none;     /* Alt çizgi gelmesin */
}

footer .copyright {
  font-size: 14px;
  color: #ccc;
}

/* GİRİŞ */


:root{
  --canvas-w: 1920;     /* px */
  --canvas-h: 1080;     /* px */
}

/* DIŞ KAP — akış yüksekliği; sahneyi merkeze yerleştirir */
.grid-hero{
  /* Görünen akış yüksekliği, viewport genişliğine göre ölçeklenir.
     1920px üzeri ekranlarda ölçek = 1 (sahne tam 1920x1080).
     1920px altı ekranlarda sahne küçülür ama oran korunur. */
  --scale: min(1, 100vw / var(--canvas-w));
  height: calc(var(--canvas-h) * 1px * var(--scale)); /* akışta kaplayacağı yükseklik */
  
  display: flex;
  justify-content: center;    /* yatay merkez */
  align-items: flex-start;     /* üstten başlasın */
  position: relative;
  overflow: visible;           /* taşma kalsın; canvas zaten ölçekli */
  margin: 0 auto;              /* sayfa ortası */
}

/* İÇ KAP (CANVAS) — GERÇEK SAHNE: hep 1920x1080 kalır */
.grid-hero .canvas{
  width: calc(var(--canvas-w) * 1px);     /* 1920px */
  height: calc(var(--canvas-h) * 1px);    /* 1080px */
  position: relative;
  transform: scale(var(--scale));         /* akışa göre küçült/büyüt */
  transform-origin: top center;           /* üst-orta referans */
}

/* Grid sadece canvas içinde */
.grid-hero .grid-layer{
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg width='30' height='30' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='1' cy='1' r='1' fill='white' fill-opacity='0.25'/></svg>");
  background-repeat: repeat;
  background-size: 30px 30px;
  z-index: 0;
}

/* Radial */
.grid-hero .radial-layer{
  position: absolute; inset: 0;
  background: 
  radial-gradient(55% 90% at 25% 53%, #000 7.37%, #3AC2BB 14.42%, transparent 30.77%);

  pointer-events: none;
  z-index: 1;
}

/* İç düzen: metin + görsel – absolute yok */
.grid-hero .stage{
  position: relative;
  z-index: 2;
  width: 100%; 
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 120px;
}

/* Tipografi ve CTA — aynı görsel değerler */
.grid-hero .hero-copy h1{
  font-family: "Sora", sans-serif;
  font-weight: 450;
  font-size: 85px;
  line-height: 90px;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 24px 0;
  position: absolute;
  left: 25%;
  top: 62%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Buton */

.grid-hero .hero-copy .cta {
  position: absolute;
  left: 24.5%;          
  top: 81%;           
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000;
  padding: 18px 36px;
  border-radius: 30px;
  font: 600 18px/1 "Sora", sans-serif;
  text-decoration: none;
  transition: transform .2s ease;
}





.grid-hero .hero-copy .cta:hover { transform: translate(-50%, -50%) translateY(-2px); }

/* Makine Görseli */

.grid-hero .hero-visual img {
  position: absolute;
  left: 77%;      /* sahne merkezine göre sağda */
  top: 48%;       /* dikey merkez hizası */
  transform: translate(-50%, -50%);
  width: 850px;
  height: auto;
}

/* header’ı canvas ile aynı ölçeğe sok */
.grid-hero { 
  --scale: min(1, 100vw / var(--canvas-w)); 
}


.grid-hero .header-canvas{
  position: absolute;
  top: 0; left: 50%;
  width: calc(var(--canvas-w) * 1px);   /* 1920px */
  height: auto;
  transform: translateX(-50%) scale(var(--scale));
  transform-origin: top center;
  z-index: 3;
  overflow: hidden;
  margin: 0;
  
}

/* Header Dış Kutu */

.grid-hero .main-header{
  position: absolute;   /* akıştan çıkar, stage'i etkilemez */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin: 0;
  padding-top: 40px;
}

.grid-hero{ overflow: hidden; }        /* pano dışına taşmayı kes */
.grid-hero .canvas{ position: relative; overflow: hidden; }

/* grid katmanı tıklamayı engellemesin */
.grid-hero .grid-layer{ pointer-events: none; z-index: 0; }
.grid-hero .radial-layer{ pointer-events: none; z-index: 1; }


/* Görsel Kopyalama Engeli */
img {
  -webkit-user-drag: none; /* Safari/Chrome */
  -khtml-user-drag: none;  /* Eski Konqueror */
  -moz-user-drag: none;    /* Firefox */
  -o-user-drag: none;      /* Opera eski */
  -webkit-user-drag: none ;     /* Standart */
  user-select: none;
  pointer-events: auto;
}
