/* Yatay taşmayı önle */
html, body { overflow-x: hidden; }
/* Temel sıfırlamalar */
html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
}


/* Galeri veya lightbox overlay */
.glightbox-container {
  z-index: 999; /* Header’ın altında kalacak */
}

body {
  background: white;
  overflow-x: hidden;
  overflow-y: auto;
}

:root {
  --header-height: 100px; /* header yüksekliği */
}

/* Temel header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background-color: rgba(255,255,255,0.45); /* Şeffaf */
  border-bottom: 3px solid rgba(255,255,255,0.45);
  z-index: 10;
  transition: background-color 0.5s linear; /* Geçiş efektini ekledik */
}

.site-header.scrolled {
  background-color: #fff; /* Scroll olunca beyaz */
}
.logo img {
  height: 200px;
  width: auto;
  display: block;
}

header h1 {
  width: 300px;
  height: 90px;
}

header h1 a {
  display: block;
  height: 100%;
  text-indent: -9999px;
  background: url(logo.svg) no-repeat center center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

header nav ul li {
  position: relative;
}

header nav ul li a {
  color: #000;
  font-weight: 700;
  padding: .5rem 1rem;
}

header nav ul li a:hover,
header nav ul li.action a {
  background: #ffffffde;
  border-radius: .5rem;
}

header nav ul li.action a:hover {
  background: #fff;
  color: #000;
}

/* Dropdown */
header nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  z-index: 99;
}

header nav ul li .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #000;
  font-weight: 600;
}

header nav ul li .dropdown-menu li a:hover {
  background: #f5f5f5;
}

header nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Main içerik */
main {
  padding-top: var(--header-height);
}

/* Section genel ayar */
section {
  scroll-margin-top: var(--header-height);
}

/* İçerik kutusu */
.main-content {
  margin-top: 120px;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.content-box {
  max-width: 1000px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-top: 120px;
}

.content-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.content-box p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}
/* Sadece mobilde (örneğin 768px ve altı) geçerli olsun */
@media (max-width: 768px) {
  header {
    height: 60px !important; /* Header yüksekliğini azalt */
    padding: 5px 15px; /* Daha dar iç boşluk */
    display: flex;
    align-items: center; /* Dikeyde hizalama */
    justify-content: space-between; /* Logo sola, menü sağa */
  }

  header .logo img {
    height: 35px; /* Logoyu biraz küçült */
    width: auto;
  }

  .hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Eğer logo veya menü üst üste biniyorsa */
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Slider’ın header yüksekliğine göre aşağı kaymasını önle */
  .slider,
  .swiper-container {
    margin-top: 60px; /* header yüksekliği kadar boşluk bırak */
  }
}


/* SLIDER - masaüstü ve mobilde tam uyumlu çözüm */
.swiper-container,
section.slider .slide {
  width: 100%;
  height: 100vh; /* masaüstü için sabit yükseklik */
  position: relative;
  overflow: hidden;
}
/* ---------- SLIDER (yeni) ---------- */
section#anasayfa.slider {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;            /* görselin doğal yüksekliğine bırak */
  overflow: hidden;        /* taşmayı engelle */
}

/* Swiper container/slide'ları otomatik yüksekliğe bırak */
.swiper-container,
.swiper-wrapper,
.swiper-slide {
  width: 100%;
  height: auto !important;
}

/* Görsel: eni %100, yüksekliği otomatik */
.swiper-slide img {
  width: 100%;
  height: auto;            /* boşluk bırakmaz, görsel kendi oranını korur */
  display: block;
  object-fit: cover;       /* istersen kaldır; çoğu durumda height:auto yeterli */
}

/* Logo (mobil/masaüstü) */
.slider-logo {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 18vw;
  max-width: 280px;
  min-width: 120px;
  z-index: 10002; /* slider ve metinlerin üstünde */
  pointer-events: none;
}
.slider-logo img { width:100%; height:auto; display:block; }

/* Metin alanı */
section.slider .slide .text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 10;
  text-align: left;
  width: 80%;
  max-width: 700px;
}

/* Responsive ayarlar */
@media (max-width: 1024px) {
  section.slider .slide .text { top:45%; left:8%; transform:translateY(-50%); }
}

@media (max-width: 768px) {
  .slider-logo {
    bottom: 4%;
    right: 50%;
    transform: translateX(50%);
    width: 40vw;
    max-width: 180px;
    min-width: 120px;
  }

  section.slider .slide .text {
    top: auto;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
  }
}
/* Mobil cihazlar için (max-width 768px) */
@media only screen and (max-width: 768px) {
  .slider {
    margin-top: 50px; /* slider'ı aşağı almak için */
  }

  /* Eğer logo veya başlık da taşarsa, onları da düzeltebilirsin */
  .slider-logo {
    margin-top: 20px;
  }
}
/* Dropdown açılınca alt menü görünür */
.dropdown > ul {
  display: none;
  flex-direction: column;
}

.dropdown.open > ul {
  display: flex;
}
/* Mobilde dropdown gizli */
@media (max-width: 768px) {
  nav ul li ul {
    display: none;       /* başta gizle */
    flex-direction: column;
    background: #fff;
    padding: 0;
    margin: 0;
  }

  nav ul li.open > ul {
    display: flex;       /* açıkken göster */
  }

  nav ul li a {
    cursor: pointer;     /* tıklanabilir görünümü */
  }
}
/* Hamburger ikon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 2px;
}

/* Mobilde hamburger görünür */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  #main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;       /* tam ekran */
    height: 100dvh;     /* iOS Safari güvenli yükseklik */
    background: #fff;
    padding: calc(70px + env(safe-area-inset-top)) 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* iOS momentum scroll */
  }

  #main-nav.active { transform: translateX(0); }

  #main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  #main-nav a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    display: block;
    width: 100%;
  }

  /* Dropdown alt menü */
  .dropdown > ul {
    display: none;
    flex-direction: column;
    padding-left: 15px;
  }

  .dropdown.open > ul {
    display: flex;
  }
}

/* Daha dar ekranlarda tam genişlik menü */
@media (max-width: 768px) {
  #main-nav {
    right: -100vw;
    width: 100vw;       /* tam ekran kapla */
    padding: 70px 16px;  /* üst boşluk mobil header'a göre */
  }
  #main-nav.active {
    right: 0;
  }
}

/* Mobil menü overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 9999; /* içerik üstü, menü altı (menü 10000) */
}
.nav-overlay.active { display: block; }

/* GÖRSEL */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LOGO */
.slider-logo {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 18vw;
  max-width: 280px;
  min-width: 120px;
  z-index: 10002;
  pointer-events: none; /* dokunmalarda karışmasın */
}

.slider-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: none; /* orijinal renkler */
  object-fit: contain;
}

/* YAZI ALANI */
section.slider .slide .text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 10;
  text-align: left;
  width: 80%;
  max-width: 700px;
}

section.slider .slide .text h3 {
  font-size: clamp(24px, 4vw, 60px);
  font-weight: 600;
  text-shadow: 3px 3px #000;
  margin-bottom: 10px;
}

section.slider .slide .text h2 {
  font-size: clamp(18px, 2.5vw, 35px);
  font-weight: 900;
  text-shadow: 3px 3px #000;
  line-height: 1.1;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  section.slider .slide .text {
    top: 45%;
    left: 8%;
    transform: translateY(-50%);
  }
}

/* 🔹 Mobil düzeltme */
@media (max-width: 768px) {
  section.slider .slide {
    height: 100vh; /* sabit yükseklik - kaymayı önler */
  }

  .slider-logo {
    position: absolute;
    bottom: 4%;
    right: 50%;
    transform: translateX(50%);
    width: 40vw;
    max-width: 180px;
    min-width: 120px;
  }

  section.slider .slide .text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }
}

  /* Text-box, içerik kutuları daha geniş ve responsive */
  .hakkimizda .text-box {
    width: 95%;
    padding: 20px;
  }
  .hakkimizda .text-box h2 {
    font-size: 1.5em;
  }
  .hakkimizda .text-box p {
    font-size: 1em;
  }

  /* Welcome section tek sütun */
  section.welcome {
    grid-template-columns: 1fr;
    gap: 40px;
  }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .gallery-section {
    flex-direction: column;
    align-items: center;
    padding: 60px 15px;
  }

  .gallery-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    order: -1; /* Butonlar üstte gözüksün */
    margin-right: 10px;
  }

  .gallery-sidebar button {
    flex: 1 1 45%;
    text-align: center;
    font-size: 14px;
  }

  .gallery-left h2 {
    text-align: center;
    font-size: 28px;
  }

  .gallery-box {
    width: 100%;
    left: 100px;
  }

  .gallery-box img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .gallery-sidebar button {
    flex: 1 1 100%;
  }
}


  /* Contact icon-box responsive */
  section.iletisim .contact-details .icon-box {
    width: auto;
  }

  /* Info alt alta */
  section.iletisim .info {
    display: flex;
    flex-direction: column;
  }


#proje{
  margin-top: 0;
  padding-top: 70px;
}

section.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding: 5rem;
  align-items: start;
  background-image: url(hkbc.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 700px;
  margin-top: 0;
}

/* Ortak stil */
section.welcome div {
  max-width: 700px;
  margin-top: 100px
}

section.welcome h3,
section.welcome h4,
section.welcome h5,
section.welcome h6 {
  font-weight: 800;
  font-style: normal;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 60px;
}
section.welcome p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
}
/* 1. yazı sol */
section.welcome .about {
  grid-column: 1;
  grid-row: 1;
  margin-top: 80px;
  max-width: 800px;
}
/* 2. yazı sağ */
section.welcome .about2 {
  grid-column: 2;
  grid-row: 2;
margin-left: 100px;
max-width: 800px;
}
/* 3. yazı tekrar sol */
section.welcome .about3 {
  grid-column: 1;
  grid-row: 3;
  max-width: 800px;
}
section.welcome .about4 {
  grid-column: 2;
  grid-row: 4;
  margin-left: 100px;
max-width: 800px;
}
section.welcome img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-left: 70px
}
section.welcome .image3 {
  grid-column: 2;
  grid-row: 3;
  margin-top: 200px; /* istediğin kadar arttırabilirsin */
   margin-right: 20px;
}
section.welcome .image4 {
   margin-top: 150px; 
}
/* Scroll offset tüm sectionlara */
#proje,
#galeri,
#evtipleri,
#ulasim,
#hakkimizda,
#iletisim,
#ekatalog {
  scroll-margin-top: 40px; /* header yüksekliğini yaz */
}

.gallery-section {
  display: flex;
  justify-content: flex-start;
  align-items: center; /* 👈 üstten değil ortadan hizala */
  gap: 20px;
  background-image: url("hkbc.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 100px;
  min-height: 800px;
}

/* SAĞ TARAF */
.gallery-sidebar {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center; /* 👈 butonları kendi içinde ortala */
  justify-content: center; /* 👈 dikey ortalama */
  margin-top: 50px;
}


/* Sol kısım */
.gallery-left {
  flex: 1;
  max-width: 900px;
}
.gallery-left h2 {
  font-size: 48px;
  font-style: italic;
  color: rgb(63, 63, 63);
  margin: 0 0 40px 0;
  gap: 20px;
  left: 0;
  
}
.gallery-left img.gallery-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  object-fit: contain;
}
.gallery-sidebar button {
  padding: 12px 20px;
  border: none;
  background: #e5e5e5;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-sidebar button:hover {
  background: #fff;
}
@media (max-width: 992px) {
  .gallery-section {
    flex-direction: column;
    align-items: center;
  }

  .gallery-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top:0;
  }

  .gallery-sidebar button {
    margin: 5px;
  }
}


/* Grid galeri */
.galeri {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.galeri .item {
  height: 350px; /* kutu yüksekliğini artırdım */
  overflow: hidden;
}
.galeri .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
/* Swiper kutusu */
.gallery-swiper {
  width: 100%;
  height: 500px; /* daha büyük slider */
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.blok-menu-left {
  position: absolute;
  top: 750px;       /* üstten mesafe */
  left: 0;          /* sola yasla */
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10000;      /* haritanın üstünde gözüksün */
  margin-top: 0;    /* 👈 kaldır! bu sağa kaymanın ana nedeni */
}

.blok-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #c02222b6;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  width: 120px;    /* sabit genişlik */
  top:800px
}
.blok-btn:hover {
  background-color: #e63946;
  transform: scale(1.05);
}
.ev-slider { 
  position: relative;
  width: 100%; 
  height:820px; /* istediğin yükseklik */
  overflow: hidden;
} 
.ev-slider .slides {
  display: flex; 
  transition: transform 0.6s ease;
  height: 700px;
  width: 100%; /* önemli: taşmayı engeller */
  margin-top: 150px;
} 
.ev-slider .slide { 
  flex:0 0 100%; /* her slide %100 genişlikte olur */
  height: 100%; 
  text-align: center;
  position: relative; 
  margin-bottom: 30px;
} 

.ev-slider .slide h2 { 
  position: absolute; 
  font-style: italic;
  font-size: 48px;
  bottom: 30px; 
  left: 50%; 
  bottom: 0;
  transform: translateX(-50%); 
  background: rgba(0,0,0,0.6);
  color: #fff; 
  padding: 10px 20px;
  border-radius: 8px; 
} 
/* EV TİPLERİ başlığı */
.section-title {
  text-align: center;
  font-size: 48px;   /* büyüklüğü arttır */
  font-weight: 900;
  font-style: italic;
  margin: 20px 0;
  color: #222;       /* koyu gri yazı */
  text-transform: uppercase; /* tamamını büyük harf */
  letter-spacing: 3px;       /* harf aralığı */
  text-shadow: 2px 2px 6px rgba(255, 253, 253, 0.3); /* gölge */
}
.ev-slider button { 
  position: absolute; 
  top: 50%;
  transform: translateY(-50%); 
  background: rgba(209, 208, 208, 0.5);
  color: #fff;
  border: none; 
  font-size: 2rem;
  cursor: pointer; 
  padding: 10px 15px;
  border-radius: 50%; 
  transition: background 0.3s; 
  z-index: 5; /* butonların önde kalması için */
} 
.ev-slider button:hover {
  background: rgba(184, 184, 184, 0.8); 
}
.ev-slider .prev {
  left: 20px; 
}
.ev-slider .next {
  right: 20px;
}

.ev-slider .slide img {             /* genişliği otomatik, kırpma yok */
  max-width: 100%;          /* slider genişliğini aşmasın */            /* yüksekliği otomatik */
  max-height: 100%;         /* slider yüksekliğini aşmasın */
  display: block;
  margin: 0 auto;           /* yatay ortalama */
  object-fit: contain;      /* kırpmadan sığdır */
}

/* Slider başlığı ile slider arasındaki boşluk */
#evtipleri .section-title {
  margin-bottom: 2px; /* başlık ile slider arası boşluk */
}
/* Her slide içindeki görsel ile yazı arasındaki boşluk */
.ev-slider .slide h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 20px; /* görselin altından boşluk */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6); /* yarı saydam arka plan */
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 5px; /* görsel ile yazı arası boşluk */
}
.ev-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slide {
  min-width: 100%; /* her slide tam ekran genişliği */
  flex-shrink: 0;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.prev { left: 10px; }
.next { right: 10px; }
:root {
  --accent: #0b5b4f;
  --text: #2b2b2b;
  --muted: #6b7280;
  --bg: #f7f8f8;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}
.ulasim {
  text-align: center;
  padding: 60px 20px;
  background-image:url('hkbc.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 400px;
  border-radius: 20px;
}

.ulasim h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: rgb(63, 63, 63);
}
.ulasim p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-style: italic;
  gap: 30px

}

.ulasim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;   /* kutucukları aşağı kaydırır */
}

.ulasim-item {
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
}


.about-section {
  padding: 60px 20px;
  background-image: url(hkbc.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 400px;
}
.about-container {
  max-width: 1000px;
  max-height: 1000px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border-radius: 18px;
  padding: 40px 40px;
  box-shadow: var(--shadow);
}
.about-title {
  font-size: 28px;   /* Daha büyük görünür */
  font-weight: bold;
  color:#000; 
  margin: 100px;
}
.about-header h2 {
  font-size: 30px; 
  font-weight: bold;
  color: #000 !important;   /* düzelttim */
  text-align: center !important;
  display: block !important;
  position: relative !important;
  z-index: 9999 !important;
}

.about-underline {
  display: block;
  width: 200px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
}
.about-logos {
  margin: 28px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  height: 200px;
}
.about-logos .logo {
  height: 250px;
  width: auto;
  object-fit: contain;
}
.about-logos .divider {
  width: 1px;
  height: 50px;
  background: #d7dadd;
}
.about-text {
  max-width: 860px;
  margin: 14px auto 24px;
  color:#000;
  line-height: 1.7;
  font-size: 16px;
}

.about-cta {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all .2s ease;
}

.about-cta:hover {
  background: #09483f;
}
.content-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.profile-photo {
  width: 500px;
  max-width: 100%;
  border-radius: 10px;
}

.profile-photo img {
  width: 100%;
  height: auto;
  display: block;
}


section.iletisim .contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section.iletisim .contact-details .item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f5f5f5;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, background 0.2s;
}

section.iletisim .contact-details .item:hover {
  background: #eaeaea;
  transform: translateY(-3px);
}

/* ikon kutucuğu */
section.iletisim .contact-details .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  width: 500px;
}
section.iletisim .contact-details .icon-box i {
  font-size: 20px;
  color: #333;
}
section.iletisim .contact-details span {
  font-size: 16px;
  color: #000;
}
section.iletisim {
   background: 
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), 
    url("iletisim.jpg") no-repeat center center;
  background-size: cover; 
  background-attachment: fixed; 
  background-color: #000; 
  width: 100%;
  min-height: 100vh;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.iletisim .info {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}
section.iletisim .box {
  flex: 1;
  background: rgba(255, 255, 255, 0.4);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
section.iletisim .left h2 {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 20px;
}
section.iletisim .left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 50px;
}

section.iletisim .contact-details {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
section.iletisim .contact-details .item {
  display: flex;
  align-items: center;
  gap: 60px;
  font-size: 18px;
}
section.iletisim .contact-details i {
  font-size: 22px;
  color: #333;;
}
/* Sağ taraf */
section.iletisim .right h3 {
  font-size: 28px;
  font-style: italic;
  margin-bottom: 20px;
}
section.iletisim .right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.iletisim .right input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
}
section.iletisim .right input:focus {
  border-color: #333;
}
section.iletisim .right button {
  padding: 14px;
  border: none;
  border-radius: 25px;
  background: #333;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
section.iletisim .right button:hover {
  background: #555;
}
/* Responsive (mobilde alt alta) */
@media(max-width: 768px) {
  section.iletisim .info {
    flex-direction: column;
  }
}
section.iletisim .contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.iletisim .contact-details .item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f5f5f5;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, background 0.2s;
}

section.iletisim .contact-details .item:hover {
  background: #eaeaea;
  transform: translateY(-3px);
}

/* ikon kutucuğu */
section.iletisim .contact-details .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
section .class .map h2 {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 20px;
  text-align: center;
  background-color: #8f8e8e;
}
.map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 20px;
}

html {
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  header nav ul {
    flex-direction: column;
    gap: 5px;
  }

  section.welcome {
    grid-template-columns: 1fr; /* tek sütun */
    gap: 40px;
  }

  .gallery-section {
    flex-direction: column;
    align-items: center;
  }

  .gallery-sidebar {
    margin-top: 40px;
    width: 100%;
    align-items: center;
  }

  .gallery-sidebar button {
    width: 100%;
    max-width: 300px;
  }
}
img {
  max-width: 100%;
  height: auto;
}
@media(max-width: 768px){
  .footer-inner {
    grid-template-columns: 1fr; /* tek sütun */
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;    /* alt kısımlar alt alta */
    gap: 10px;
    text-align: center;
  }
}

.site-footer {
  background-image: url(hkbc.jpg);
  color: #000000;
  padding: 50px 20px 20px;
  border-top: 1px solid #000000;
  font-family: "Open Sans", sans-serif;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 200px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #111;
}
.footer-col ul {
  list-style: none;
  padding: 10px;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-col a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: #818181;
}
.logo-mark {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #555;
}
.logo-text {
  font-weight: 600;
  font-size: 1rem;
  color: #111;
}

.tagline {
  color: #555;
  font-size: 0.95rem;
  margin: 8px 0 18px;
}

.footer-col.newsletter {
  display: flex;
  left: 700px;  /* sağa hizala */
  height: 60px;
  border-radius: 50px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9f9;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.newsletter-form label {
  white-space: nowrap;
  font-weight: 600;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;   /* input çok küçük olmasın */
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-form button {
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  background: #ddd;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #bbb;
}

.footer-bottom {
  max-width: 1000px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #000000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #000000;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #000000;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #555;
}
.social-links a {
  color: #333;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #0077ff; /* Facebook mavi */
}

.social-links a:nth-child(2):hover {
  color: #e1306c; /* Instagram pembe */
}

  #ekatalog {
  margin-top: calc(var(--header-height) + 20px);
  text-align: center;
  background-image: url('hkbc.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}
/* Modal arka plan */
.modal {
  display: none; 
  position: fixed; 
  z-index: 999; 
  left: 0;
  top: 10px;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.6); 
  overflow: auto;
}
/* İç kutu */
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
  position: relative;
}

/* Kapatma butonu */
.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
.modal .close:hover {
  color: red;
}


body {
  margin:0;
  padding: 0;
  background-image: url('hkbc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* scroll yapınca sabit kalır */
}
  .pdf-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
    font-size: 14px;
  }

  .pdf-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
  }

  .pdf-btn:hover {
    background: #f5f5f5;
    border-color: #999;
  }

  .pdf-btn:active {
    transform: scale(0.97);
  }

  .pdf-btn.download {
    font-weight: bold;
    background-color: #c9c9c9;
  }
  #pdf-container {
  max-width: 2000px; /* daha büyük yapabilirsin */
}

#pdf-render {
  max-width: 100%;
  height: auto;
}
#pdf-viewer-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}


section.iletisim .info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  gap: 40px;
}

/* Sol kutu sol üst */
section.iletisim .left {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
}

/* Sağ kutu sağ alt */
section.iletisim .right {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
}

/* Mobilde alt alta */
@media(max-width: 768px) {
  section.iletisim .info {
    display: flex;
    flex-direction: column;
  }
}
/* Ortak container */
.hakkimizda.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  padding-top: 120px; /* header’dan ayrışsın */
}


/* Video */
.hakkimizda .video-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hakkimizda .video-section video {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Yazı kutusu */
.hakkimizda .text-box {
  width: 90%;
  max-width: 1500px;
  background: #f7f5f5;
  padding: 30px 25px;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(184,184,184,0.75);
}

.hakkimizda .text-box h2 {
  margin-bottom: 15px;
  font-size: 2em;
}

.hakkimizda .text-box p {
  margin-top: 20px;
  line-height: 1.7;
  font-size: 1.1em;
}

/* Mobil uyumlu */
@media (max-width: 768px) {
  .hakkimizda .text-box {
    width: 95%;
    padding: 20px;
  }

  .hakkimizda .text-box h2 {
    font-size: 1.5em;
  }

  .hakkimizda .text-box p {
    font-size: 1em;
  }
}
/* ----------------- MOBİL UYUMLULUK ----------------- */
@media (max-width: 768px) {



  /* WELCOME / HAKKIMIZDA */
  section.welcome {
    grid-template-columns: 1fr; /* tek sütun */
    padding: 2rem;
    gap: 40px;
  }
  section.welcome .about2, .about4 {
    margin-left: 0; /* sağdaki yazıları ortala */
    margin-top: 0;
  }
  section.welcome img {
    width: 100%; /* görselleri küçült */
    margin-left: 0;
  }

  .hakkimizda .video-section video {
    width: 100%; /* video mobilde tam genişlik */
    max-width: 100%;
  }
  .hakkimizda .text-box {
    width: 95%;
    padding: 20px;
  }
  .hakkimizda .text-box h2 {
    font-size: 1.5em;
  }
  .hakkimizda .text-box p {
    font-size: 1em;
  }

  /* GALERİ */
  .gallery-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 0;
  }
  .gallery-sidebar {
    width: 100%;
    margin-top: 20px;
  }
  .gallery-sidebar button {
    width: 100%;
    max-width: 250px;
  }
  .galeri {
    grid-template-columns: 1fr; /* tek sütun */
    gap: 15px;
  }

  /* İLETİŞİM */
  section.iletisim .info {
    display: flex;
    flex-direction: column; /* kutular alt alta */
    gap: 20px;
  }
  section.iletisim .left, section.iletisim .right {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    justify-self: stretch;
  }
  section.iletisim .contact-details .item {
    flex-direction: column; /* ikon ve yazı alt alta */
    gap: 10px;
  }
  section.iletisim .contact-details .icon-box {
    width: 50px;
    height: 50px;
  }

  /* PDF ve slider logoları */
  .slider-logo {
    width: 50%; 
    left: 25%; 
    top: auto; 
    bottom: 10px;
  }
  #pdf-container {
    max-width: 100%; /* mobilde genişlik sınırı */
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr; /* tek sütun */
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }



  /* WELCOME / HAKKIMIZDA */
  section.welcome {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 30px;
  }
  section.welcome .about2, .about4, .image3, .image4 {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
  section.welcome img {
    width: 100%;
    margin-left: 0;
  }

  .hakkimizda .video-section video {
    width: 100%;
    max-width: 100%;
  }
  .hakkimizda .text-box {
    width: 95%;
    padding: 18px;
  }
  .hakkimizda .text-box h2 {
    font-size: 1.4em;
  }
  .hakkimizda .text-box p {
    font-size: 0.95em;
  }

  /* GALERİ */
  .gallery-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 15px;
  }
  .gallery-left img.gallery-img {
    max-width: 100%;
    height: auto;
  }
  .galeri {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .gallery-sidebar {
    width: 100%;
    margin-top: 20px;
  }
  .gallery-sidebar button {
    width: 100%;
    max-width: 220px;
    font-size: 14px;
  }

  /* İLETİŞİM */
  section.iletisim .info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  section.iletisim .left, section.iletisim .right {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    justify-self: stretch;
  }
  section.iletisim .contact-details .item {
    flex-direction: column;
    gap: 10px;
  }
  section.iletisim .contact-details .icon-box {
    width: 45px;
    height: 45px;
  }

  /* PDF ve slider logoları */
  .slider-logo {
    width: 45%;
    left: 27.5%;
    top: auto;
    bottom: 8px;
  }
  #pdf-container {
    max-width: 100%;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* BLOK BUTONLARI */
  .blok-btn {
    width: 95px;
    padding: 8px 14px;
    font-size: 13px;
  }

  /* GENEL GÖRSELLER */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Scroll-margin-top küçük cihazlarda da çalışsın */
  #proje,
  #galeri,
  #evtipleri,
  #ulasim,
  #hakkimizda,
  #iletisim,
  #ekatalog {
    scroll-margin-top: 200px;
  }
}
/* ----------------- SON EKLEMELER ----------------- */

/* Çok küçük mobil ekranlar için ekstra düzenleme */
@media (max-width: 480px) {
  header nav ul {
    gap: 4px;
  }
  .logo img {
    height: 60px;
  }
  section.welcome {
    padding: 1rem;
  }
  section.welcome h3, section.welcome h4 {
    font-size: 1.2rem;
  }
  .gallery-left h2 {
    font-size: 24px;
  }
  .gallery-sidebar button {
    font-size: 12px;
  }
  .hakkimizda .text-box h2 {
    font-size: 1.2em;
  }
  .hakkimizda .text-box p {
    font-size: 0.9em;
  }
  .slider-logo {
    width: 70%;
    left: 15%;
    bottom: 5px;
  }
}

/* Hover efektlerini daha yumuşak yap */
section.iletisim .contact-details .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

/* Footer link hover renkleri */
.footer-col a:hover {
  color: #0b5b4f;
  transition: color 0.3s ease;
}

/* PDF buton hover daha belirgin */
.pdf-btn:hover {
  background: #e0e0e0;
  border-color: #888;
  color: #000;
}
/* ------------- Görselleri tamamen koruyup responsive yapmak için son ekleme ------------- */

/* Slider ve galeriler */
.slides img,
.slide img,
.gallery-section img,
.slider-logo img,
.video-section video {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain; /* görseli kırpmadan sığdırır */
}

/* Sabit pozisyonlu logolar için esnek hizalama */
.slider-logo {
    left: 50% !important;
    top: auto !important;
    bottom: 20px; /* istenirse yukarı veya aşağı ayarla */
    transform: translateX(-50%);
    max-width: 90%;
}

/* Video bölümleri */
.video-section video {
    max-height: 80vh; /* yüksekliği ekranın %80'ini geçmesin */
    display: block;
    margin: 0 auto;
}

/* Genel img ve video esnekliği */
img, video {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Header, slider ve diğer section’lar için mobil uyum */
@media (max-width: 768px) {
    .slides img,
    .slide img,
    .gallery-section img,
    .slider-logo img,
    .video-section video {
        max-width: 100%;
        height: auto;
    }
    .slider-logo {
        bottom: 10px;
        max-width: 80%;
    }
}

/* Daha küçük cihazlar için ekstra güvenlik */
@media (max-width: 480px) {
    .slider-logo {
        max-width: 70%;
    }
}
/* ----------------- SON EK MOBİL OPTİMİZASYON ----------------- */
@media (max-width: 768px) {

  /* Header alt alta */
  header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  header nav ul {
    flex-direction: column;
    gap: 5px;
  }
  .logo img {
    height: 70px;
  }


  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Welcome / Hakkımızda */
  section.welcome {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 30px;
  }
  section.welcome .about2,
  section.welcome .about4,
  section.welcome .image3,
  section.welcome .image4 {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
  section.welcome img {
    width: 100%;
    margin-left: 0;
  }

  .hakkimizda .video-section video {
    width: 100%;
    max-width: 100%;
  }
  .hakkimizda .text-box {
    width: 95%;
    padding: 18px;
  }
  .hakkimizda .text-box h2 {
    font-size: 1.4em;
  }
  .hakkimizda .text-box p {
    font-size: 0.95em;
  }

  /* Galeri */
  .gallery-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 15px;
  }
  .gallery-left img.gallery-img {
    max-width: 100%;
    height: auto;
  }
  .galeri {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .gallery-sidebar {
    width: 100%;
    margin-top: 20px;
  }
  .gallery-sidebar button {
    width: 100%;
    max-width: 220px;
    font-size: 14px;
  }

  /* İletişim */
  section.iletisim .info {
    flex-direction: column;
    gap: 20px;
  }
  section.iletisim .left,
  section.iletisim .right {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    justify-self: stretch;
  }
  section.iletisim .contact-details .item {
    flex-direction: column;
    gap: 10px;
  }
  section.iletisim .contact-details .icon-box {
    width: 50px;
    height: 50px;
  }

  /* PDF ve slider logoları */
  .slider-logo {
    width: 50%;
    left: 25%;
    top: auto;
    bottom: 10px;
  }
  #pdf-container {
    max-width: 100%;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  /* Genel görseller */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Blok butonları */
  .blok-btn {
    width: 100px;
    padding: 10px 16px;
    font-size: 14px;
  }

  /* Slider prev/next butonları */
  .ev-slider button.prev,
  .ev-slider button.next {
    padding: 6px;
  }
}
.section-title:empty {
  display: none;
}

.image-slider {
  position: relative;
  width: 100%;
  max-width: 900px;   /* Galeri genişliği */
  margin: 80px auto;  /* Ortala */
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  margin-top:120px ;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-track img {
  width: 100%;
  height: 500px;        /* sabit yükseklik */
  object-fit: cover;    /* resim alanı doldurur, kırpma yapar */
  flex-shrink: 0;
  border-radius: 15px;
}

/* Butonlar */
.image-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 1rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.image-slider .prev { left: 10px; }
.image-slider .next { right: 10px; }

.image-slider button:hover {
  background: rgba(0,0,0,0.8);
}
.snap-text {
  margin-top: 20px;
  max-width: 900px;
  margin-left: 500px;
}
.snap-text h3 {
  font-size: 40px;
  left: 100px;
}
.snap-text p {
  font-size: 20px;
}

.snap-video {
  position: relative;
  width: 100%;
  max-width: 900px; /* Video genişliği */
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.snap-video:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.snap-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* Videonun köşelerini yuvarlatır */
  background: #000;
}

.snap-video video::-webkit-media-controls {
  border-radius: 10px;
}
.menu-btn {
  display: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
  padding: 10px;
}
@media (max-width: 1200px) {
  .menu-btn {
    display: block;
  }
  nav ul {
    flex-direction: column;
    background: white;
    border-top: 1px solid #ddd;
  }
}
/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  color: #333;
}

/* Hamburger */
.hamburger {
  width: 32px;
  height: 22px;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 9999;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* Mobil menü */
@media (max-width: 480px) {
  #main-nav {
    display: none; /* başlangıçta gizli */
    position: absolute;
    top: 70px; 
    left:150px;
    width:250px;
    background: white; /* beyaz alan */
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  #main-nav.open {
    display: flex; /* açılınca görünür */
  }

  #main-nav ul li a {
    color: black; /* yazılar görünür olsun */
    padding: 10px 20px;
    display: block;
  }
}


/* Sağdan kayan panel */
.side-menu {
  position: fixed;
  top: 0;
  right: -280px;       /* başlangıçta ekran dışı */
  width: 280px;        /* panel genişliği */
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  padding-top: 80px;
  z-index: 1000;
}

.side-menu.active {
  right: 0;            /* aktif olunca tamamen ekranın sağ kenarına oturur */
}

/* Menü listesi */
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Menü linkleri */
.side-menu ul li a {
  padding: 10px 20px;   /* soldan ve sağdan boşluk */
  display: block;
  text-decoration: none;
  color: black;
  text-align: left;      /* yazılar sola hizalı olmalı */
}

/* --- MOBİL DÜZENLEME (sadece görünüm) --- */
@media (max-width: 992px) {
  /* Hamburger butonunu göster ve sağa hizala */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 99999; /* Menü üstünde kalsın */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Açıldığında X şekline dönüşsün */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  
  /* Sağdan kayan menü */
  #main-nav {
    position: fixed;
    top: 0;
    right: -280px; /* başlangıçta ekran dışında */
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10000;
  }

  #main-nav.active {
    left: 0;
  }

  /* Menü elemanları dikey dizilsin */
  #main-nav ul {
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #main-nav a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
  }

  /* Dropdown menüleri mobilde sade gösterelim */
  #main-nav .dropdown ul {
    position: static;
    box-shadow: none;
    background: none;
    padding-left: 15px;
  }
}

.side-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  padding: 10px 30px;
  display: block;
  transition: background 0.2s;
}
.side-menu ul li a:hover {
  background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
/* --------------------- */
/* HAMBURGER MENÜ */
/* --------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 5px;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Çarpı (X) şekli */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------- */
/* MOBİL MENÜ */
/* --------------------- */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 100px; /* header yüksekliği kadar */
    right: -100%;
    width: 250px;
    height: calc(100vh - 100px);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 20px;
    transition: right 0.4s ease;
    box-shadow: -3px 0 15px rgba(0,0,0,0.1);
    z-index: 998;
  }

  /* BURASI ÖNEMLİ: menü açıldığında görünür olacak */
  nav.open ul {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  nav ul li a {
    color: #333;
    font-size: 16px;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown-menu li a {
    padding-left: 10px;
  }
}

/* --------------------- */
/* HEADER SCROLL EFEKTİ */
/* --------------------- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255,255,255,0.45);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* --- SLIDER YAZI POZİSYON DÜZELTME --- */
section.slider .slide {
  position: relative;
  display: flex;
  align-items: center;   /* dikey ortala */
  justify-content: center; /* yatay ortala */
  overflow: hidden;
}

section.slider .slide .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

section.slider .slide .text h3,
section.slider .slide .text h2 {
  margin: 0;
  text-shadow: 2px 2px 4px #000;
}

/* Küçük ekranlarda boyut ayarlaması */
@media (max-width: 768px) {
  section.slider .slide .text h3 {
    font-size: 5vw;
  }
  section.slider .slide .text h2 {
    font-size: 4vw;
  }
}
.swiper-slide .slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white; /* gerekirse */
  z-index: 10;
}
@media (max-width: 768px) {
  .swiper-slide .slider-text {
    font-size: 18px; /* veya istediğiniz boyut */
    padding: 0 10px;
  }
}
/* Masaüstü zaten düzgün, ona dokunmuyoruz */

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* ===== Fix: evtipleri + blok-menu-left (override eski absolute kurallar) ===== */
#evtipleri {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 24px !important;
  padding: 60px 20px !important;
  position: relative !important;
}

/* Resim kapsayıcısı ve resim */
#evtipleri .ev-slider {
  flex: 1 1 720px;
  max-width: calc(100% - 220px);
  min-width: 300px;
  box-sizing: border-box;
}
#evtipleri .ev-slider img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 12px;
}

/* Buton kutusunu (önceki absolute kurallarını) tamamen iptal et ve yan sütun yap */
#evtipleri .blok-menu-left {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin: 0 !important;
  z-index: 5 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex: 0 0 200px; /* sağdaki sabit sütun genişliği (isteğe göre değiştir) */
  align-self: flex-start !important;
}

/* Buton boyutu */
#evtipleri .blok-menu-left .blok-btn {
  width: 100%;
  box-sizing: border-box;
}

/* MOBİL: görsel üstte, butonlar altta — alt alta düzgün şekilde */
@media (max-width: 992px) {
  #evtipleri {
    flex-direction: column !important;
    align-items: center !important;
  }
  #evtipleri .ev-slider { order: 1; max-width: 100%; }
  #evtipleri .blok-menu-left {
    order: 2;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  #evtipleri .blok-menu-left .blok-btn {
    flex: 1 1 45%;
    width: auto;
    margin: 6px;
  }
}
@media (max-width: 600px) {
  #evtipleri .blok-menu-left .blok-btn { flex: 1 1 100%; width: 100%; margin: 6px 0; }
}
/* --- İnce ayar: butonları biraz aşağı indir ve görseli tam sığdır --- */

/* Masaüstünde butonları biraz aşağı al */
@media (min-width: 993px) {
  #evtipleri .blok-menu-left {
    margin-top: 100px !important; /* aşağı inme miktarı (isteğe göre 20–80px arası oynat) */
  }
}

/* Görseli tam sığdırmak için */
#evtipleri .ev-slider img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 85vh; /* ekrana taşmasın ama tam görünsün */
  display: block;
  margin: 0 auto;
}
/* --- Mobil görünüm: görsel ile butonlar arasındaki boşluğu azalt --- */
@media (max-width: 992px) {
  #evtipleri {
    gap: 8px !important;              /* önceki 24px’lik boşluğu daralt */
    padding: 30px 10px !important;    /* üst-alt boşluğu azalt */
  }

  #evtipleri .ev-slider {
    margin-bottom: 10px !important;   /* görsel ile butonlar arası boşluk */
  }

  #evtipleri .blok-menu-left {
    margin-top: 10px !important;         /* yukarıdan boşluğu sıfırla */
    gap: 2px !important;              /* butonlar arası aralığı da azalt */
  }
}
/* --- Mobilde Hakkımızda logolarını yan yana hizalama --- */
@media (max-width: 992px) {
  #hakkimizda .about-logos {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
  }

  #hakkimizda .about-logos .divider {
    display: none !important; /* ortadaki çizgiyi gizle (isteğe bağlı) */
  }

  #hakkimizda .about-logos img.logo {
    width: 120px !important; /* logolar biraz küçülür, sığar */
    height: auto !important;
  }
}
/* --- Mobilde: sidebar galeri kutusunun altına gelsin --- */
@media (max-width: 992px) {
  .gallery-section {
    display: flex !important;
    flex-direction: column !important;  /* alt alta gelsin */
    align-items: center !important;
  }

  .gallery-left {
    order: 1 !important;  /* önce galeri */
    width: 100% !important;
  }

  .gallery-sidebar {
    order: 2 !important;  /* sonra butonlar */
    width: 100% !important;
    margin-top: 20px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .gallery-sidebar button {
    flex: 1 1 45%; /* iki sütunlu düzen */
    padding: 10px 15px;
    font-size: 14px;
  }

  @media (max-width: 600px) {
    .gallery-sidebar button {
      flex: 1 1 100%; /* çok dar ekranda tek sütun */
    }
  }
}
/* --- Mobilde galeri kutusunu küçült --- */
@media (max-width: 992px) {
  .gallery-box {
    width: 100% !important;       /* kutu tam genişlik */
    max-width: 600px !important;  /* isteğe göre maksimum genişlik */
    height: auto !important;      /* yükseklik içeriğe göre */
    margin: 0 auto !important;    /* ortala */
  }

  .gallery-box .gallery-swiper {
    width: 100% !important;
    height: auto !important;
  }

  .gallery-box .gallery-swiper .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;  /* taşmayı engelle */
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.modal.active { display: flex; }
.modal img { max-width: 90%; max-height: 90%; object-fit: contain; cursor: pointer; }
.modal .prev, .modal .next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 3rem; font-weight: bold;
  cursor: pointer; user-select: none; padding: 0 10px;
}
.modal .prev { left: 10px; }
.modal .next { right: 10px; }
@media (max-width: 768px) {
  .gallery-section { flex-direction: column; }
  .gallery-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
}
/* Hamburger buton gizle/ göster */
.hamburger {
  display: none; /* Desktop'ta gizle */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
}

/* Menü gizle */
#main-nav {
  display: flex; /* Desktop'ta yatay */
}

/* Mobil için */
@media (max-width: 480px) {
  .hamburger {
    display: flex;
  }

 #main-nav {
  position: fixed;
  top: 0;
  right: -150px;        /* Başlangıçta ekran dışında */
  width: 280px;         /* Menü genişliği */
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  padding: 80px 20px;   /* Menü içindeki yazıların padding'i */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000;       /* Hamburger ikonunun üstünde */
}

  #main-nav ul {
    flex-direction: column;
  }

  #main-nav ul li {
    text-align: center;
    padding: 10px 0;
  }

  #main-nav.show {
    display: flex;
  }
}
/* --- MOBİL UYUMLULUK EKLEMESİ --- */
@media (max-width: 992px) {
  section.iletisim {
    background-attachment: scroll; /* Mobilde fixed sorun çıkarır, scroll’a al */
    background-position: center top;
    background-size: cover; /* Görselin tamamı görünür şekilde ölçeklenir */
    padding: 60px 20px; /* Dar ekranlarda içerik taşmasın */
    min-height: 100vh; /* Görsel tam sayfayı kaplasın */
  }

  section.iletisim .info {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  section.iletisim .box {
    width: 100%;
    padding: 25px;
  }

  section.iletisim .left h2 {
    font-size: 28px;
    text-align: center;
  }

  section.iletisim .left p {
    font-size: 16px;
    text-align: center;
  }

  section.iletisim .right h3 {
    font-size: 22px;
    text-align: center;
  }

  section.iletisim .contact-details {
    gap: 20px;
  }

  section.iletisim .contact-details .item {
    gap: 15px;
    padding: 12px 15px;
    font-size: 15px;
  }
}

/* Daha küçük telefonlar için (örnek iPhone SE gibi) */
@media (max-width: 480px) {
  section.iletisim {
    background-position: center;
    background-size: contain; /* Görselin tamamı küçük ekranlarda da sığar */
    background-repeat: no-repeat;
    padding: 50px 15px;
  }

  section.iletisim .left h2 {
    font-size: 24px;
  }

  section.iletisim .left p {
    font-size: 14px;
  }
}
/* === MOBİL DÜZEN DÜZELTMESİ === */
@media (max-width: 992px) {
  section.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background-attachment: scroll; /* mobilde fixed bug’ını önler */
  }

  section.welcome div {
    max-width: 100%;
    margin: 30px 0;
  }

  section.welcome img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
  }

  section.welcome h3,
  section.welcome h4,
  section.welcome h5,
  section.welcome h6 {
    font-size: 24px;
    text-align: center;
    margin-top: 30px;
  }

  section.welcome p {
    font-size: 16px;
    text-align: justify;
  }

  section.welcome .about,
  section.welcome .about2,
  section.welcome .about3,
  section.welcome .about4,
  section.welcome .image1,
  section.welcome .image2,
  section.welcome .image3,
  section.welcome .image4 {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }
}

@media (max-width: 480px) {
  section.welcome {
    padding: 1.5rem 1rem;
    background-size: cover;
    background-position: center top;
  }

  section.welcome h3,
  section.welcome h4,
  section.welcome h5,
  section.welcome h6 {
    font-size: 20px;
  }

  section.welcome p {
    font-size: 15px;
  }
}
/* LOGO DÜZELTME - KAYMAYI ÖNLER */
section.slider {
  position: relative;
}

section.slider .slider-logo {
  position: absolute;
  bottom: -10px;     /* alttan mesafe */
  right: 15px;      /* sağdan mesafe */
  width: 18vw;
  max-width: 400px;
  min-width: 120px;
  z-index: 9999;
  pointer-events: none;
}

section.slider .slider-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* MOBİL AYAR */
@media (max-width: 768px) {
  section.slider .slider-logo {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    width: 40vw;
    max-width: 180px;
  }
}
.swiper-container,
section.slider .slide {
  height: calc(var(--vh, 1vh) * 100); /* 100vh yerine bu */
}
/* LOGO ÜSTTE KALSIN VE SABİT DURSUN */
section.slider {
  position: relative;
}

section.slider .slider-logo {
  position: absolute;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  width: 40vw;
  max-width: 300px;
  min-width: 120px;
  z-index: 9999;
  pointer-events: none;
}

section.slider .slider-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
/* SLIDER LOGO DÜZELTME */
section.slider {
  position: relative;
  overflow: hidden;
}

section.slider .slider-logo {
  position: absolute;
  bottom: 5%;
  left: 40%;
  transform: translateX(-50%);
  width: 400px;         /* masaüstü boyutu */
  z-index: 9999;
  pointer-events: none;
}

section.slider .slider-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ✅ Mobil uyumu */
@media (max-width: 768px) {
  section.slider .slider-logo {
    width: 100px;
    bottom: 10%;
  }
}
/* LOGO SABİTLEME */
.slider {
  position: relative;
  overflow: hidden;
}

.slider-logo {
  position: absolute;
  top: 40px;                /* yukarıdan boşluk */
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  z-index: 10000;
  pointer-events: none;
}

.slider-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ✅ Mobil için düzeltme */
@media (max-width: 768px) {
  .slider-logo {
    top: 25px;
    width: 100px;
  }
}
/* Slider tam ekran, header ile uyumlu */
section.slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Masaüstü */
}

@media (max-width: 1024px) {
  section.slider {
    height: 100dvh; /* Mobil modern tarayıcı */
  }
}
main {
  padding-top: var(--header-height);
}
/* Slider tam ekran, header ile uyumlu */
section.slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Masaüstü */
  overflow: hidden;
}

/* Modern mobil tarayıcılar için */
@media (max-width: 1024px) {
  section.slider {
    height: 100dvh; /* tarayıcı çubuğu kaybolsa bile tam ekran */
  }
}

/* Slider içi görseller */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Slider container tüm ekranı kaplasın */
section.slider {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Swiper wrapper ve slide tam ekran */
.swiper-container,
.swiper-wrapper,
.swiper-slide {
  width: 100%;
  height: 100%;
}

/* Görseller orantılı, boşluk olmadan tam ekran */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* orantıyı korur, boşluk olabilir */
  object-position: center center;
}

/* Eğer boşluk istemiyorsan ama kırpılma minimal olsun: */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ekranı tamamen kaplar, minimal kırpma olur */
  object-position: center center;
}

/* Logo her zaman üstte */
.slider-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

/* Mobilde yazılar düzgün konumlansın */
.swiper-slide .text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: #fff;
  z-index: 10;
}

/* Responsive font */
.swiper-slide .text h2 {
  font-size: clamp(24px, 5vw, 48px);
}
.swiper-slide .text h3 {
  font-size: clamp(16px, 3vw, 24px);
}
@media (max-width: 768px) {
  /* Slider yüksekliğini içeriğe göre ayarlıyoruz */
  .ev-slider {
    height: auto !important;        /* sabit 820px kaldır */
    overflow: visible;              /* taşan içerik görünür */
  }

  .ev-slider .slides {
    height: auto !important;        /* 700px kaldır */
    margin-top: 0 !important;       /* 150px kaldır */
  }

  .ev-slider .slide {
    height: auto !important;
    margin-bottom: 0;
  }

  .ev-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
  }

  /* Blok menü mobilde slider’ın hemen altına yapışık */
  .blok-menu-left {
    margin-top: 5px !important;   /* minimal boşluk */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .blok-btn {
    width: auto !important;
    padding: 8px 16px;
    font-size: 14px;
    top: auto !important;         /* top:800px kaldır */
    position: relative;           /* absolute yerine relative */
  }
}
/* İletişim bölümü görsel ayarı */
.iletisim {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Ekranı doldurması için */
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/iletisim-bg.jpg') no-repeat center center; /* Görsel yolunu kendi dosyana göre değiştir */
  background-size: cover; /* Görseli orantılı büyütüp ekrana sığdırır */
}

/* Mobilde içerik padding ile taşmasın */
@media screen and (max-width: 768px) {
  .iletisim {
    min-height: auto; /* İçerik yüksekliğine göre ayarla */
    padding: 40px 20px; /* Kenarlardan boşluk */
  }

  .iletisim .info {
    flex-direction: column;
    align-items: center;
  }

  .iletisim .left.box,
  .iletisim .right.box {
    width: 100%;
    max-width: 500px; /* Mobilde çok büyük olmaması için */
    margin-bottom: 20px;
  }
}



