/* Main container for the entire site */
html,body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  
}

.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

header {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
}

/* NAVBAR */
.navbar {
  width: 100%;
  height: 136px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  box-sizing: border-box;
}

/* LOGO */
.logo img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-left: 350px;
  margin-bottom: 50px;
}

/* BUTONLAR */
.nav-buttons {
  display: flex;
  gap: 24px;
}

.btn-secondary {
  width: 145px;
  height: 48px;
  padding: 0 18px;
  border: 1.33px solid #002944;
  background-color: transparent;
  color: #002944;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 15px;
  
  
}

.btn-secondary:hover {
  background-color: #002944;
  color: white;
}

.btn-primary {
  width: 80px;
  height: 44px;
  padding: 0 18px;
  background-color: #002944;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10.67px;
  border: none;
 
  transition: background-color 0.3s ease;
  margin-right: 10px;
  margin-top: 20px;
  font-family: Arial, Helvetica, sans-serif;
  
}

.btn-primary:hover {
  background-color: #00539C;
}

.icon-chevron {
  font-size: 12px;
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #002944;
  min-width: 116px;
  display: none;
  z-index: 1000;
  margin-top: -25px;
 
}

.dropdown-menu a {
  display: block;
  text-align: center;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  
}

.dropdown-menu a:hover {
  background-color: #00539C;
}

.hamburger {
  width: 64px;
  height: 64px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.hamburger span {
  width: 64px;
  height: 0;
  border: 4px solid #002944;
  border-radius: 2px;
}
/* Hamburger Menü Açma */
.hamburger.open + .mobile-menu {
  right: 0; /* Menü sağa kayar */
}



/* Menü için temel stil */
/* Menü başlangıçta sağda gizli olacak */
.mobile-menu {
  position: absolute;
  top: 0;
  right: -8px; /* Menü başlangıçta sağda gizli */
  width: 400px;
  height: 600px; /* Yükseklik %100 olacak şekilde ayarladım */
  background-color: #002944;
  z-index: 9999; /* Diğer içeriklerin üstünde */
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  margin-top: 137px;
  opacity: 0; /* Başlangıçta gizli */
  transform: translateX(100%); /* Menü sağda gizli */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Opaklık ve kayma animasyonu */

 
}

.mobile-menu a {
  margin-bottom: 35px; /* Aralarındaki boşluk */
  font-size: 30px; /* Yazı boyutu */
  font-family: 'Archivo', sans-serif; /* Yazı tipi */
  font-weight: 400; /* Yazının kalınlığı */
  color: white; /* Yazı rengi */
  text-decoration: none; /* Altı çizili olmayacak */
  text-transform: uppercase; /* Büyük harf yapar */
  letter-spacing: 1px; /* Harfler arasındaki mesafe */
  margin-top: 50px;
  text-align: center; /* Yazıları merkezler */
}

.mobile-menu a:hover {
  padding-left: 10px;
  text-decoration: underline; /* Altına çizgi ekler */
  text-decoration-color: #FB8E56;
}

/* Fotoğrafların alt alta sıralanması */
.photos {
  display: flex;
  justify-content: space-between;
 max-width: 100px;
  margin-top: auto;
  gap: 20px;
  margin-left: -10px;
}

.photos img {
  width:33px; /* Genişlik 33px */
  height: 33px;; /* Yükseklik 33px */
  object-fit: cover; /* Görüntünün oranını bozmadan kapsama yapılır */
  border-radius: 8px; /* Kenarlara yuvarlaklık ekler */
}

/* Hamburger Button */
/* Hamburger Button (Sağda konumlandırmak için) */


/* Fotoğrafların alt alta sıralanması */


/* Hamburger Button */

/* HİZMETLERİMİZ BAŞLIK + ARA BUTONU */
.services-header {
    max-width: 1440px;
    height: 70px; /* Bu kısım input ve button'un yüksekliğine göre ayarlanabilir */
    padding: 0 169px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 64px auto 32px auto;
    box-sizing: border-box;
}

.services-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    text-transform: uppercase;
    color: #002944;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
}

/* Yeni eklenen .search-container için stiller */
.search-container {
    position: relative; /* Öneri kutusunu konumlandırmak için */
    display: flex; /* Input ve button'u yan yana hizalamak için */
    align-items: center;
    gap: 10.67px; /* Arama alanı ve düğme arasındaki boşluk */
    /* Genişliği 330px olan eski search-button'un yerini alacak */
    width: 330px; 
    height: 48px; /* Yüksekliği 48px olan eski search-button'un yerini alacak */
}

/* Arama giriş alanı için stiller */
.search-input {
    flex-grow: 1; /* Mevcut alanı doldurmasını sağlar */
    height: 100%; /* Kapsayıcı yüksekliğini alsın */
    padding: 0 18px; /* Eski search-button'daki padding */
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #002944;
    border: 1.33px solid #002944;
    background-color: transparent;
    border-radius: 6px;
    box-sizing: border-box; /* Padding ve border genişliği etkilemesin */
    /* placeholder metni için varsayılan renk veya farklı bir renk belirleyebilirsiniz */
    &::placeholder {
        color: rgba(0, 41, 68, 0.7); /* Metin rengine göre biraz daha soluk */
    }
}

/* Arama düğmesi için stiller (eski search-button'dan alınanlar) */
.search-button {
    height: 100%; /* Kapsayıcı yüksekliğini alsın */
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 10.67px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #002944;
    border: 1.33px solid #002944; /* input ile aynı border */
    background-color: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Padding ve border genişliği etkilemesin */
    white-space: nowrap; /* "Ara" metni tek satırda kalsın */
}

.search-button:hover {
    background-color: rgba(0, 41, 68, 0.05); /* Hover efekti */
}

.search-img-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Öneri kutusu için stil (öncekiyle aynı, konumlandırma iyileştirildi) */
.suggestions-box {
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    top: calc(100% + 5px); /* Arama kutusunun hemen altına 5px boşlukla hizala */
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
    display: none; /* Varsayılan olarak gizli */
}

.suggestions-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestions-box li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.suggestions-box li:last-child {
    border-bottom: none;
}

.suggestions-box li:hover {
    background-color: #f0f0f0;
}
.services-section {
  max-width: 1440px;
  min-height: 800px;
  display: flex;
  gap: 138px;
  padding: 0 169px;
  margin: 64px auto;
  box-sizing: border-box;
}

.sidebar {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  position: relative;
  margin-bottom: 12px;
}

.sidebar ul li a {
  display: block;
  width: 200px;
  padding: 12px 18px;
  background-color: transparent;
  color: #002944;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.sidebar ul li a:hover {
  background-color: #004374;
  color: #ffffff;
}

.sidebar ul li::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #002944;
  margin-top: 12px;
}

.services-content {
  flex: 1;
}

.service-block {
  margin-bottom: 80px;
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
}

.service-title {
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #002944;
  margin-bottom: 16px;
}

.service-subtitle {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #FB8E56;
  margin-bottom: 16px;
}

.service-text {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.service-text ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.service-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #002944;
}

/* FOOTER */

footer {
  width: 100%;
  background-color: #002944;
  padding: 60px 0 0 0px;
  margin: 0;
  margin-top: 100px;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 169px;
  display: flex;
  justify-content: space-between;
  gap: 30px;

}

.footer-section {
  flex: 1;
}

.footer-section:nth-child(1) {
  flex: 2;
}

.footer-section:nth-child(2),
.footer-section:nth-child(3) {
  flex: 1;
}

.footer-section:nth-child(4) {
  flex: 0.8;
}

.footer-section h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-section p,
.footer-section a {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  margin: 8px 0;
  display: block;
  line-height: 1.5;
}

.footer-section a:hover {
  color: #FB8E56;
}

.footer-bottom {
  width: 100%;
  background-color: #003D5C;
  margin-top: 40px;
}

.footer-bottom-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 15px 169px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-content span {
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateX(0);
}

/* Hamburger ikonuna tıklandığında çizgilerin 'X' şeklini alması için */
.hamburger.active span:nth-child(1) {
  transform: translateY(16px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
}

/* Hamburger ikonundaki çizgilere yumuşak geçiş efekti ekle */
.hamburger span {
    transition: all 0.3s ease-in-out;
}