/* GENEL AYARLAR */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
  color: #333;
}
/* SADECE MENÜYÜ STICKY YAP */
.ust-menu {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fef9e7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem; /* Yazıyı büyütür */
  font-weight: 700;
  color: #004a99;
}

.logo img {
  width: 60px;   /* Logo genişliği */
  height: 60px;  /* Logo yüksekliği */
}
.logo span {
  font-family: 'Montserrat', sans-serif;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* HEADER */
/* Slayt alanı */
.slider {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 20px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 12px;
  user-select: none;
}

/* Hero bölümü */
.hero {
  max-width: 1100px;
  margin: 20px auto 60px;
  padding: 0 20px;
  text-align: center;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #004a99;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #6b2a35;
  margin-bottom: 20px;
}

.hero-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fef9e7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* İÇERİK HIZALAMA */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-logo-icon {
  width: 55px;    /* İkonun genişliği */
  height: 55px;   /* İkonun yüksekliği */
  vertical-align: middle;  /* Yazı ile aynı hizada görünmesi için */
  margin-left: 10px;       /* Yazıdan biraz boşluk bırak */
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #004a99;
}

.logo img {
  width: 20px;  /* ikon genişliği */
  height: 20px; /* ikon yüksekliği */
  object-fit: contain;
  display: block;
}


/* SAĞ TARAF NAV (BUTONLAR) */
nav {
  display: flex;
  gap: 15px;
}

/* NAV BUTONLARI */
.nav-button {
  text-decoration: none;
  background-color: #004a99;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #0073e6;
}

/* RESPONSIVE (MOBİL UYUMLULUK) */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-button {
    width: 100%;
  }
}
#banner {
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  background: white;
  text-align: center;
  padding-bottom: 20px; /* Alt boşluk */
}

#banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0; /* Üst köşeler yuvarlak */
}

.banner-text {
  font-family: 'Montserrat', sans-serif;
  color: #003366;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hizmetler-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.hizmetler-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #004a99;
  margin-bottom: 40px;
}

.hizmetler-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hizmet-kutu {
  position: relative;
  background-color: #fff3b0;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 2px 6px rgba(222, 202, 113, 0.3);
  width: 300px;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hizmet-kutu:hover, .hizmet-kutu:focus-within {
  box-shadow: 0 8px 20px rgba(222, 202, 113, 0.7);
  transform: translateY(-6px);
}

.hizmet-kutu p.aciklama {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin-top: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.hizmet-kutu:hover p.aciklama,
.hizmet-kutu:focus-within p.aciklama {
  max-height: 200px; /* yeterli yüksekliği ver */
  opacity: 1;
  margin-top: 15px;
}


.hizmet-kutu:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(222, 202, 113, 0.6);
}

.hizmet-kutu img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  user-select: none;
  object-fit: contain;
}

.hizmet-kutu h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #6b2a35;
  margin: 0;
}
.hero {
  background-color: #fef9e7;
  min-height: 300px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.hero-text h1 {
  font-size: 3rem;
  color: #004a99;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.8rem;
  color: #6b2a35;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 25px;
}

.hero-text p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}
.iletisim-section {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  max-width: 600px;
  margin: 60px auto;
}


.iletisim-section h2 {
  color: #004a99;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
}

.iletisim-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.iletisim-form label {
  font-weight: 600;
  color: #004a99;
}

.iletisim-form input,
.iletisim-form textarea {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: vertical;
}
.iletisim-form button {
  background-color: #004a99;
  color: white;
  padding: 14px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.iletisim-form button:hover {
  background-color: #f8f3d2;
}

.footer-section {
  background-color: #fef9e7;
  padding: 20px 0;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  margin-top: 60px;
  font-size: 0.9rem;
}

.footer-section a {
  color: #004a99;
  text-decoration: none;
  font-weight: 600;
  margin: 0 5px;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-container p {
  margin: 6px 0;
}

.hizmetler-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.hizmet-kutu {

    background-color: #fff3b0;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 2px 6px rgba(222, 202, 113, 0.3);
    width: 300px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer; /* buraya ekledik */
  }
  
.hizmet-kutu:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(222, 202, 113, 0.7);
}


.hizmet-kutu h3 {
  color: #6b2a35;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.hizmet-kutu p {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.5;
  font-size: 1rem;
}

main {
  max-width: 900px;       /* Ana içeriği sınırla */
  margin: 40px auto;      /* Ortala ve üst-alt boşluk ver */
  padding: 0 20px;
  text-align: center;     /* Başlık ve paragraf ortalı */
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.section-title {
  font-size: 2rem;    /* 1.6'dan 2'ye çıkardık */
}

.section-icon {
  width: 30px;        /* 24'ten 30'a çıkardık */
  height: 30px;
}

main p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 auto 40px auto;
  max-width: 700px;
}
/* Neden Biz başlığı */
.neden-biz-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #6b2a35;
  margin-bottom: 15px;
  border-bottom: 3px solid #d4af37; /* altın rengi alt çizgi */
  padding-bottom: 6px;
}

/* İkon biraz büyütüldü */
.neden-biz-title img {
  width: 24px;
  height: 24px;
}

/* Neden Biz listesinin kutucukları */
ul.neden-biz-list {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none; /* default diski kaldır */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Her madde kutucuklu, gölgeli, ikonlu */
ul.neden-biz-list li {
  background-color: #fff3b0;
  color: #6b2a35;
  font-size: 1.1rem;
  line-height: 1.4;
  padding: 12px 18px 12px 45px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(222, 202, 113, 0.4);
  position: relative;
  width: calc(50% - 10px); /* iki sütun yapar */
  cursor: default;
}

/* Liste ikonu (küçük temizlik simgesi) */
ul.neden-biz-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("https://cdn-icons-png.flaticon.com/512/994/994928.png"); /* Temizlik ikonu */
  background-size: contain;
  background-repeat: no-repeat;
}

/* Responsive ayar - tek sütun yap */
@media (max-width: 600px) {
  ul.neden-biz-list li {
    width: 100%;
  }
}
.hizmetler-section {
  padding: 60px 20px;
  background-color: #fdfaf2;
  text-align: center;
}

.hizmetler-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004a99;
}

.hizmetler-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.hizmet-kutu {
  background-color: #fff3b0;
  border-radius: 12px;
  padding: 20px 25px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(222, 202, 113, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hizmet-kutu:hover {
  box-shadow: 0 8px 20px rgba(222, 202, 113, 0.7);
  transform: translateY(-6px);
}

.hizmet-kutu img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.hizmet-kutu h3 {
  margin: 10px 0;
  color: #6b2a35;
  font-size: 1.2rem;
}

.hizmet-aciklama {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  color: #444;
}

.hizmet-kutu:hover .hizmet-aciklama {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;
}
html {
  scroll-behavior: auto; /* Otomatik değil! Çünkü biz JS ile kontrol edeceğiz */
}

