* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  html {
  scroll-padding-top: 140px; /* header yüksekliğine göre ayarla */
}

  
body {
  background: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
body.menu-open {
  overflow: hidden;
}
body.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Genel body font ve renk */
body, section, main, footer, header, nav, div {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #273F4F; /* Koyu mavi ton, okunması rahat */
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
}

/* Başlıklar (h1-h6) */
h1, h2, h3 {
  color: #222; /* koyu gri/siyaha yakın */
  font-weight: 700; /* kalın başlık için */
}

 h4, h5, h6 {
  font-weight: 700;
  color: #FF0B55; /* Ana kırmızı renk, başlıklar için vurgu */
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Paragraflar */
p {
  margin-bottom: 1rem;
  color: #273F4F;
  font-weight: 400;
}

/* Linkler */
a {
  color: #FF0B55;
  text-decoration: none; /* Alt çizgi kaldırıldı */
  font-weight: 600;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: #273F4F;
  text-decoration: none; /* Hover’da da alt çizgi yok */
}

/* Footer linklerine özel alt çizgi kaldırma */
footer a {
  text-decoration: underline; /* Footerda alt çizgi olabilir */
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #FF0B55;
  text-decoration: underline;
}
.footer-contact p,
.footer-bottom p {
  color: white;
}

#page-content {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#page-content.fade-in {
  opacity: 1;
}


/* Butonlar */
button, .btn-devam, .cta-button, .menu-cta {
  font-family: inherit;
  font-weight: 600;
  background-color: #FF0B55;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, .btn-devam:hover, .cta-button:hover, .menu-cta:hover {
  background-color: #273F4F;
  color: white;
}



.iletisim-container:hover,
.iletisim-form input:hover,
.iletisim-form textarea:hover {
  filter: none !important;
  opacity: 1 !important;
  /* Diğer bulanıklık/opacity etkisi varsa kaldır */
}

/*HAKKIMIZDA VE ÜSTÜNDEKİ İÇİN HOVER EFEKTİ*/
/* Hover efekt için container */
.hover-effect {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.hover-effect:hover {
  color: #333; /* Yazı koyulaşır */
}

/* Başlık ve paragraf rengini hover ile uyumlu yap */
.hover-effect h2,
.hover-effect p {
  transition: color 0.3s ease;
  color: inherit;
}

/* İkonlar */
.icon {
  color: #FF0B55; /* Kurumsal kırmızı */
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: color 0.3s ease;
  pointer-events: none;
  user-select: none;
}

.top-icon {
  top: -30px;
}

.bottom-icon {
  bottom: -30px;
}

.hover-effect:hover .icon {
  color: #273F4F; /* Hoverda koyu renk */
}

/*AÇIKLAMA ANİMASYON */
.hero-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 3rem;
  background-color: #F5F6F7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 50px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  color: #333;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gear-wrapper {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.gear {
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
  transition: animation-duration 0.3s ease;
}

.hero-container:hover .gear {
  animation-duration: 3s;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/*AÇIKLAMA*/
.hero-container {
  max-width: 900px;
  margin: 3rem auto; /* ortala ve yukardan boşluk bırak */
  padding: 2rem 3rem;
  background-color: #F5F6F7; /* Beyaz arka plan */
  border: 1px solid rgba(0, 0, 0, 0.1); /* İnce, çok açık siyah/gri çizgi */
  border-radius: 10px;
  box-shadow: 0 50px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  color: #333;
}

.hero-container:hover {
  background-color: #f0f0f0; /* Hoverda açık gri */
  color: #111;
  transform: scale(1.03);
}

.hero-container:hover h1,
.hero-container:hover p {
  color: #111;
}

.hero-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-container p {
  font-size: 1.2rem;
}


/*WP*/
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15px;
  height: 60px;
  width: 60px;
  transition: width 0.4s ease, padding 0.4s ease;
  cursor: pointer;
  z-index: 1000;
  overflow: hidden;
  text-decoration: none;
}

.whatsapp-float:hover {
  width: 180px;
  padding: 0 20px;
}

.whatsapp-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-family: Arial, sans-serif;
  font-size: 16px;
  white-space: nowrap;
}

.whatsapp-text {
  opacity: 0;
  transform: translateX(10px); /* Artık - değil, + verdik */
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  color: white;
  margin-left: 10px;
  font-size: 16px;
  white-space: nowrap;
  display: inline;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

  
  /* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 63, 51, 0.85);
  color: white;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  
}

.logo img {
  height: 80px;
  transition: transform 0.3s ease;
}


header:hover .logo img {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: transparent;
  transition: width 0.3s ease, background-color 0.3s ease;
}

nav a:hover {
  color: #273F4F;
}

nav a:hover::after {
  width: 100%;
  background-color: #273F4F;
}

.menu-cta {
  background: #273F4F;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  margin-left: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.menu-cta:hover {
  background-color: white; /* arka plan beyaz */
  color: #273F4F;          /* yazı hover öncesi rengi */
}


  /* Swiper */
 /* SLIDER Genel Ayarlar */
.swiper {
  width: 100%;
  height: 50vh; /* Ekranın %50 yüksekliği - daha dengeli */
  position: relative;
  overflow: hidden;
  margin-top: 100px; /* Header boşluğunu da biraz azalttık */
}

/* SLIDE İÇERİĞİ */
.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; /* veya 600px */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  object-fit: cover; /* Resimler taşma yapmaz */
  height: auto;
}

/* KARARTMA EFEKTİ */
.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  z-index: 1;
}

/* ORTADAKİ SLIDER BAŞLIĞI */

.slider-overlay-title {
  position: relative;
  z-index: 10;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 90%;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* SLIDER YAZISI ALTTAKİ (SLIDE TEXT) */
.slide-text {
  position: absolute;
  bottom: 20px; /* Eskiden 40px idi, biraz daha aşağı */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
  text-align: center;
}

/* SLIDER BUTONLARI */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #FE7743;
}

/* SLIDER PAGINATION */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.cta-button:hover {
  background-color: #273F4F;
}

  .swiper {
    width: 100%;
    height: 60vh;/* Slider'ı ekran boyutuna göre tam olarak doldurur */
    position: relative;
    overflow: hidden;
    margin-top: 115px; /* Header yüksekliği kadar boşluk */
  }
  
  
  .swiper-slide {
    position: relative;
  }
  
  .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Karartma efekti */
  .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
  }
  
  .slide-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
   font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    text-align: center;
  }
  
.slider-overlay-title {
  position: absolute;
  top: 200px; /* Eskiden 150px idi, biraz daha aşağı */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-weight: bold;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  font-family: 'Arial', sans-serif;
  text-align: center;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.slider-overlay-title .cta-button {
  margin-top: 15px;
  display: inline-block;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 30px;
}
  
  .swiper-button-next,
  .swiper-button-prev {
    color: white;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
  .swiper-button-next::after,
.swiper-button-prev::after {
  color: #FE7743; /* Turuncu renk */
}
  
  
  .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
  }

 /*HAKKIMIZDA */ 
.hakkimizda-kisa {
  background: #F5F6F7;
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 50px 20px rgba(0,0,0,0.05);
  text-align: center;
  color: #273F4F;
  margin-top: 100px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.hakkimizda-kisa:hover {
  background-color: #e6e9eb; /* Hafif daha açık gri */
  box-shadow: 0 60px 30px rgba(0,0,0,0.1);
  transform: scale(1.03); /* Büyütme efekti, yukarı kayma yok */
}

.hakkimizda-kisa h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.hakkimizda-kisa:hover h2 {
  color: #273F4F; /* Hover’da başlık kırmızı */
}

.hakkimizda-kisa p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.hakkimizda-kisa:hover p {
  color: #1f2a32; /* Hover’da metin biraz koyulaşır */
}



/*HAKKIMIZDA DETAY*/
.hakkimizda-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px; /* Metin ile resim arası mesafe */
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 140px auto 60px;
  padding: 0 20px;
}

.hakkimizda-main {
  max-width: 900px;
  margin: 140px auto 60px; /* Sayfanın ortasında, üstten ve alttan boşluk */
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; /* Resim ve yazı arası boşluk */
  flex-wrap: wrap;
  text-align: justify;
}

.hakkimizda-foto {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
  
}

.hakkimizda-text {
  flex: 1 1 400px;
  max-width: 700px;
  color: #444;
}


.hakkimizda-text h1 {
  font-size: 2rem; /* Küçültüldü */
  margin-bottom: 20px;
  color:#333;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.hakkimizda-text h2 {
  text-align: center;
  justify-content: center;
  align-items: center; }

.hakkimizda-text p {
  font-size: 1rem; /* Biraz daha küçük */
  line-height: 1.6;
  margin-bottom: 1rem;
}
/* Liste biçimlendirme - hem hizmet içeriği hem hakkımızda kısmı için */
.hizmet-icerik ul,
.hakkimizda-text ul {
  list-style-type: disc;
  list-style-position: inside; /* <-- Bu eklendi */
  padding-left: 0;             /* Noktayı hizaya çeker */
  margin-bottom: 1rem;
}

.hizmet-icerik li,
.hakkimizda-text li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #333;
  text-align: left; /* Mobilde ortalanmasın */
}


/* (İsteğe bağlı) Liste işaretini ikon gibi renklendirmek istersen: */
.hizmet-icerik li::marker,
.hakkimizda-text li::marker {
  color: #007B8A; /* Kurumsal ton kullanabilirsin */
  font-weight: bold;
}

/* Liste biçimlendirme - hem hizmet içeriği hem hakkımızda kısmı için */
.hizmet-icerik ul,
.hakkimizda-text ul {
  padding-left: 20px;
  margin-bottom: 1rem;
}

.hizmet-icerik li,
.hakkimizda-text li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #333;
  list-style-type: disc; /* Noktalı madde işareti */
}

/* (İsteğe bağlı) Liste işaretini ikon gibi renklendirmek istersen: */
.hizmet-icerik li::marker,
.hakkimizda-text li::marker {
  color: #007B8A; /* Kurumsal ton kullanabilirsin */
  font-weight: bold;
}


/* FadeIn Animasyon */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes smoothFadeInUpScale {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  80% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  animation: smoothFadeInUpScale 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

  
  /* Sections */
section {
  max-width: 900px; /* Tüm bloklar için eşit genişlik */
  margin: 2rem auto;
  padding: 2rem 3rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 80px 20px rgba(0,0,0,0.05);
  color: #273F4F;
}
  .hero {
    background: #f4f4f4;;
    text-align: center;
  }


  /*HİZMETLER*/
  
#hizmetler {
 
  background-color: #F5F6F7;
  border: 1px solid rgba(0, 0, 0, 0.1); /* İnce, çok açık siyah/gri çizgi */
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: 0 80px 20px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #273F4F;
  text-align: center;
  position: relative; /* stacking context oluşturduk */
  z-index: 1;
  margin-top: 100px;
  
}
 

#hizmetler h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
}

.service-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.service-button {
  display: inline-block;
  margin-top: 10px;
  background-color: #FF0B55;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-button {
  background-color: #273F4F;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.service-card p {
  min-height: 60px;
  text-align: center;
}


/* HİZMETLER DETAYLARI VE HER HTML DOSYASININ CSS KISMI */
/* Slider üst alan */
.hizmet-detay-slider {
  max-width: 1100px;
  margin: 40px auto 60px;
  margin-bottom: 0px; 
}
.hizmet-detay-slider h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #273F4F;
  margin-top: 140px;
  margin-bottom: 0%;
}

.hizmet-swiper {
  position: relative; /* Önemli: Overlay için */
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
  margin-top: 2%;
}

.hizmet-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Butonlar (Swiper) */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

/* Metin alanı */
.hizmet-icerik {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.hizmet-icerik h1 {
  font-size: 2rem;
  color: #273F4F;
  margin-bottom: 1rem;
}

.hizmet-icerik h2 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  color: #273F4F;
}

.hizmet-icerik p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hizmet-icerik ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FF0B55;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background-color: #273F4F;
  transform: translateY(-2px);
}

.slider-cta-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: transparent !important;
}


  
  /* Footer */
  footer {
    background: #FF0B55;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    border-top: 1px solid #ccc;
  }

  /*İLETİŞİM VE FORM */
  
#iletisim {
  margin-top: 70px;
}
.iletisim-wrapper {
  background: linear-gradient(135deg, #f6f9fc, #e9edf2);
  padding: 80px 20px;
}

.iletisim-container {
  margin-top: 120px; /* Ya da 100px, header yüksekliğine göre ayarla */
  max-width: 600px;
  margin: auto;
  background: linear-gradient(135deg, #ffffff, #fafafa);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.iletisim-container:hover {
  transform: scale(1.005);
}

.iletisim-baslik {
  margin-bottom: 25px;
}

.iletisim-baslik h2 {
  font-size: 2rem;
  color: #FF0B55;
  margin-bottom: 15px;
}

.iletisim-baslik p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.iletisim-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.iletisim-form input,
.iletisim-form textarea {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  background: #fdfdfd;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.iletisim-form input:focus,
.iletisim-form textarea:focus {
  border-color: #FF0B55;
  box-shadow: 0 0 6px rgba(255, 63, 51, 0.3);
  outline: none;
}

.iletisim-form textarea {
  min-height: 90px;
  resize: vertical;
}

.iletisim-form button {
  padding: 14px 0;
  background-color: #FF0B55;
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.iletisim-form button:hover {
  background-color: #273F4F;
  transform: translateY(-3px);
}


/*FOOTER*/ 
.site-footer {
  background-color: #32495A;  /* biraz açtık: #273F4F yerine */
  color: white;
  padding: 40px 20px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 80px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FF0B55;
}


.footer-links a::after {
  content: none;
}


.footer-contact {
  text-align: right;
}

.footer-bottom {
  background: linear-gradient(90deg, #273F4F, #32495A);
  padding: 15px 0;
  font-size: 0.9rem;
}


.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background-color: rgba(255, 63, 51, 0.5);  /* %50 transparan */
  margin-bottom: 20px;
}


  /*ScrollTOPBUTON*/
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FF0B55;
  color: white;
  border: none;
  width: 60px; /* 50 -> 60 yaptık */
  height: 60px;
  border-radius: 50%;
  font-size: 30px; /* ikon büyüdü, font biraz büyüdü */
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

#scrollToTopBtn:hover {
  background-color: #273F4F;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}


#scrollToTopBtn:focus {
  outline: none;
}

  #scrollToTopBtn i {
    font-size: 20px;
    transition: color 0.3s ease;
  }
  
  #scrollToTopBtn:hover i {
    color: #FF6600;
  }
  
/* Animasyonlar */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hamburger ikon stili */


/* Hamburger ikon çizgileri */
#hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 15px;
  z-index: 1100;
}

#hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#hamburger.active span {
  background-color: #111; /* Daha da koyu — X görünümü net olsun */
}

.close-btn {
  display: none; /* varsayılan olarak gizle */
}
.menu-logo {
  text-align: center;
  margin: 40px auto 20px;
  padding-bottom: 30px;
  display: none;
}

.menu-logo img {
  max-width: 120px;
  height: auto;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.menu-logo img:hover {
  transform: scale(1.05);
}




.close-btn:hover {
  color: #d81b60;
}


/* Menü */
#navbar {
  transition: right 0.3s ease-in-out;
}



#nav-links a:hover {
  color: #D62828; /* Sayfa konseptine uygun renk */
  text-decoration: none;
}




/* HAMBURGER MENU */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1101;
  position: absolute;
  right: 20px;
  top: 32px;
}

#hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Çarpıya dönüşüm */
#hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/*RESPONSİVE TASARIM KISMI*/
/* Genel Font ve Renk - Tüm Ekranlar İçin */
body, section, main, footer, header, nav, div {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #273F4F;
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
}

h1, h2, h3 {
  color: #222;
  font-weight: 700;
}

h4, h5, h6 {
  font-weight: 700;
}

/* --- DESKTOP: 1025px ve üstü --- */
@media (min-width: 1025px) {
  /* Gerekirse büyük ekran düzenleri eklenebilir */
}

/* --- TABLET: 769px - 1024px --- */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  header {
    padding: 1.5rem;
    position: fixed;
  }

  .menu-cta {
    margin-left: 20px;
  }

  .slider-overlay-title {
    font-size: 1.1rem;
  }

  .hakkimizda-main {
    margin: 140px 30px 50px;
  }
}

/* --- MASAÜSTÜ NAV HOVER --- */
@media (min-width: 769px) {
  #navbar ul#nav-links li a:hover {
    color: #111;
    border-bottom: 2px solid #FF3F33;
  }
}

/* --- MOBİL ve TABLET: max 768px --- */
@media (max-width: 768px) {
  body, section, main, footer, header, nav, div {
    font-size: 15px;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    position: fixed;
  }

  #hamburger {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1101;
    
  }

  #hamburger.open {
    display: none;
  }

  nav,
  #navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    max-width: 300px;
   max-height: 90vh; /* Alt kısmı biraz kırp */
  overflow-y: auto; /* Uzunsa scroll olur */
   background-color: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(4px); /* saydam efekti */
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1100;
  }

  nav.open,
  #navbar.open {
    transform: translateX(0);
  }

  #navbar.open .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #222;
    cursor: pointer;
    z-index: 1101;
    transition: color 0.2s ease;
  }

  #navbar.open .close-btn:hover {
    color: #d81b60;
  }

  #navbar.open .menu-logo {
   display: flex;
  justify-content: center;
  margin-inline: auto;
  }

  nav ul,
  #nav-links {
    text-align: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    height: auto;
    padding: 0;
    margin-left: 20px;
  }

  nav a,
  #nav-links li a {
    text-align: center !important;
    width: 100%;
    color: #111;
    display: block;
    width: 100%;
    padding: 8px 0;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 20px;
  }

  .menu-cta {
    margin-top: 2rem;
    margin-left: 0;
  }

  .slide-text,
  .slider-overlay-title {
    font-size: 1.1rem;
  }

  .slider-overlay-title {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 20px;
  }

  .swiper {
    height: 50vh;
    margin-top: 90px; /* veya 0 yap */
  }

  .swiper-slide {
    height: 60vh;
  }

  .swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .swiper .hizmet-swiper{
    margin-top: 50px;
    
  }

  .slider-cta-overlay {
  background-color: transparent !important;
  }

  .slider-cta-overlay h1,
  .slider-cta-overlay p {
    font-size: 16px;
    line-height: 1.3;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #FF3F33;
    color: white;
    border: none;
    margin-top: 10px;
    white-space: nowrap;
    display: inline-block;
  }

  .hakkimizda-container {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  .hakkimizda-foto,
  .hakkimizda-text {
    text-align: left;
    padding: 0 16px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hakkimizda-foto {
    margin-bottom: 20px;
  }

  .hakkimizda-main {
    margin: 120px 15px 40px;
    padding: 0 10px;
  }

  .hakkimizda-text h1 {
    font-size: 2rem;
  }

  .hakkimizda-text p {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #273F4F;
  }

  .hakkimizda-text strong {
    font-weight: bold;
    color: #222;
  }

  .hakkimizda-text ul,
  .hizmet-icerik ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .hakkimizda-text li,
  .hizmet-icerik li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
  }

  .hizmet-detay-flex,
  .hizmet-icerik {
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
  }

  .hizmet-foto {
    height: auto;
  }

  .hizmet-foto img {
    height: auto;
    object-fit: contain;
  }

  .iletisim-container {
    padding: 30px 20px;
  }

  .iletisim-baslik h2 {
    font-size: 1.8rem;
  }

  .footer-container,
  .footer-contact {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float,
  .scroll-top-btn {
    width: 60px;
    height: 60px;
  }

  .whatsapp-text {
    display:block;
  }

  .hizmet-swiper {
    height: auto !important;
  }
}

/* --- SMALL SCREEN: max 430px --- */
@media (max-width: 430px) {
   body, section, main, footer, header, nav, div {
    font-size: 14px;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }

  .swiper {
    height: 35vh;
    margin-top: 120px;
  }

  .swiper-slide img {
    height: 200px;
  }

  .slider-cta-overlay {
   background-color: transparent !important;
  }

  .cta-button {
    font-size: 13px;
    padding: 10px 18px;
  }

  
 
} 
.teklif-acik-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FF3F33;
  color: white;
  padding: 0 20px;
  height: 60px;
  line-height: 60px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.teklif-acik-btn:hover {
  background-color: #273F4F;
  transform: translateY(-2px);
  color: white;
}

/* ✅ Mobil görünüm iyileştirmesi */
@media (max-width: 480px) {
  .teklif-acik-btn {
    right: 20px;
    bottom: 20px;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
  }
}

