﻿/* Sayfa temel stilleri */
body {


    margin: 0;
  font-family: 'Segoe UI', sans-serif;
    color: #333; /* Genel yazı rengi */
  }
  
  
  
  /* Arama çubuğu tıklanabilir hale geldiğinde */
  .search-wrapper.active .search-input {
    display: inline-block;
  }
  
  /* Header: Logo ve Menü hizalaması */
  .header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Menüyü logo ile hizalamak için */
  padding: 0.1rem;
    gap: 2.5rem;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .logo img {
    height: 160px;
    margin: 0;
  }

  .logo-wordmark {
    display: flex;
    flex-direction: column;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    line-height: 1.15;
  }

  .logo-wordmark-top,
  .logo-wordmark-bottom {
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 0.5px;
  }

  .logo-wordmark-top { color: #4E9E58; }
  .logo-wordmark-bottom { color: #16301F; }

  
  /* Menü tasarımı */
  .menu {
    display: flex;
    gap: 1.5rem; /* Menü öğeleri arasındaki boşluk */
    align-items: center;
    margin-top: -20px; /* Menü kısmını yukarı almak için negatif margin kullanıyoruz */
  }
  
  .menu a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    font-size: 16px;
  }
  
  .menu a:hover {
    color: #139607;
  }

  /* ======= HAMBURGER MENÜ ======= */
  .hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1a3d2b;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.active span:nth-child(2) { opacity: 0; }
  .hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  @media (max-width: 900px) {
    .header-container { flex-wrap: nowrap; gap: 0.6rem; padding: 0.6rem 1rem; }
    .logo { order: 1; }
    .logo img { height: 56px; margin-left: 0; margin-right: 0; margin-top: 0; }
    .logo-wordmark { display: none; }
    .right-tools { order: 2; margin-left: auto; margin-right: 0; margin-top: 0; gap: 0.6rem; }
    .hamburger-btn { display: flex; order: 3; flex-shrink: 0; }
    #language-code { display: none; }
    .menu {
      display: none;
      order: 4;
      flex-basis: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      margin-top: 8px;
    }
    .menu.open { display: flex; }
    .menu a { width: 100%; padding: 12px 4px; border-top: 1px solid rgba(0,0,0,0.08); }
  }
  
  /* Sağdaki araçlar: Bayrağı ve arama butonunu hizala */
  .right-tools {
    display: flex;
    align-items: center;
    gap: 1rem; /* Bayrak ve arama kutusu arasındaki boşluk */
    justify-content: flex-start; /* Bayrak ve arama kutusunu sola hizala, ancak menüye çok yakın yap */
    margin-right: 15px; /* Menüye yakınlaştırmak için boşluk ekle */
    margin-top: -20px; /* Bayrak ve arama butonunu yukarı almak için negatif margin kullanıyoruz */
  }
  
  /* Arama çubuğu */
  .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;
    overflow: visible;
    margin-left: 0.5rem; /* Bayraktan biraz uzaklaşması için */
  }
  
  /* Arama butonunu hizalama */
  .search-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    position: relative;
    z-index: 11;
    margin-left: 0.5rem; /* Arama butonunu sola kaydırmak için */
    margin-right: 0.5rem; /* Arama butonu ile kutu arasına mesafe */
  }
  
  /* Arama kutusunu sağa kaydırma ve hizalama */
  .search-input {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    transform: none;
    height: 2.5rem;
    width: 240px;
    max-width: 60vw;
    border-radius: 9999px;
    background-color: white;
    color: black;
    padding-left: 2.5rem;
    padding-right: 1rem;
    border: none;
    display: none;
    font-size: 0.875rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
  /* Arama kutusu açıldığında */
  .search-wrapper.active .search-input {
    width: 250px; /* Daha geniş açılacak şekilde ayarlandı */
    opacity: 1;
    padding-left: 2.5rem;
    padding-right: 1rem;
  }
  
  /* Arama kutusu odaklanıldığında stil */
  .search-input:focus {
    background-color: #e2ffe5;
    outline: none;
  }
  /* Arama butonunun hover durumunda rengi değişecek */
  .search-btn:hover {
    color: #139607; /* Yeni renk (örneğin yeşil) */
  }
  
  /* Dil seçenekleri */
  .language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-left: 0.5rem; /* Bayrağı menüye daha yakınlaştırmak için */
    padding: 5px 10px 5px 5px;
    border-radius: 20px;
    border: 1.5px solid #e3e3e3;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .language-selector:hover {
    border-color: #27ae60;
    background: #f4fdf7;
  }
  
  /* Dil seçenekleri dropdown menü */
  .language-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    padding: 8px;
    gap: 6px;
    z-index: 100;
  }
  
  .language-selector img {
    width: 26px;
    height: 19px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    margin: 0;
    cursor: pointer;
  }
  .language-selector:hover img.main-flag {
    transform: scale(1.06);
  }
  .language-dropdown img {
    width: 26px;
    height: 19px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    margin-right: 0;
    cursor: pointer;
    transition: transform 0.15s ease;
  }
  .language-dropdown img:hover {
    transform: scale(1.08);
  }
  .language-selector span {
    font-size: 13px;
    color: #333;
    font-weight: 700;
  }
/* Header'ı sticky yapmak için */
header.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Diğer içeriklerin üstünde görünmesi için */
    background-color: #d4d4d442;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to right, #c6f1d5 0%, white 30%);
  }

  /* Kaydırıldığında header'ı daha belirgin hale getirme */
  header.sticky-header.is-sticky {
    background: rgba(255, 255, 255, 1); /* Arka plan rengini koyulaştır */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Gölgeleme efekti */
  }
  
  /* Header'ınızın üst kısmında arka planda boşluk olmasını engellemek için */
  body {
    padding-top: 0px; /* Header yüksekliğine göre ayar yapılabilir */
  }
/* footer stilleri artık footer.css dosyasında */
/* ===========================
   ŞİKAYETLER SAYFA STİLLERİ
   =========================== */

/* HERO */
.page-hero {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.complaints-hero {
  background: linear-gradient(135deg, #1a4b6b 0%, #2d7ea0 100%);
}
.complaints-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('resimler/logo.svg') center/contain no-repeat;
  opacity: 0.22;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,50,80,0.75), rgba(30,100,140,0.6));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.page-hero-content p { font-size: 1rem; opacity: 0.92; margin: 0; }

/* ADIMLAR */
.process-steps {
  background: #f0f7ff;
  padding: 36px 20px;
  border-bottom: 2px solid #dce8f0;
}
.process-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  text-align: center;
  padding: 16px 20px;
  min-width: 160px;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2c6b9e, #3d9ad1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 4px 14px rgba(44,107,158,0.25);
}
.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: #3d9ad1;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.process-step h4 { margin: 0 0 4px; font-size: 0.92rem; color: #1a3d5c; }
.process-step p { font-size: 0.8rem; color: #666; margin: 0; line-height: 1.4; }
.step-arrow { font-size: 1.2rem; color: #aac8e0; padding: 0 4px; margin-top: -20px; }

/* ANA BÖLÜM */
.complaint-main {
  background: #f7f9fc;
  padding: 50px 20px 60px;
}
.complaint-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.complaint-form-col { flex: 1.4; min-width: 0; }
.complaint-info-col { flex: 0.8; min-width: 280px; }

.complaint-form-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1a3d5c;
  margin: 0 0 6px;
}
.form-subtitle { font-size: 0.875rem; color: #888; margin-bottom: 20px; }

/* TİP SEÇİCİ */
.type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.type-btn {
  padding: 9px 16px;
  border: 2px solid #c8d8e8;
  background: white;
  border-radius: 22px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}
.type-btn i { margin-right: 5px; }
.type-btn:hover { border-color: #2c6b9e; color: #2c6b9e; }
.type-btn.active { background: #2c6b9e; color: white; border-color: #2c6b9e; }

/* FORM */
.complaint-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.form-group.full { flex: 1 1 100%; }
.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #444;
}
.form-group label i { color: #2c6b9e; margin-right: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #d0dce8;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  color: #333;
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2c6b9e;
  box-shadow: 0 0 0 3px rgba(44,107,158,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ÖNCELİK */
.priority-group { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.priority-option { display: flex; align-items: center; gap: 5px; cursor: pointer; font-size: 0.88rem; }
.prio-low    { color: #4caf50; font-weight: 600; }
.prio-normal { color: #2196f3; font-weight: 600; }
.prio-high   { color: #ff9800; font-weight: 600; }
.prio-urgent { color: #f44336; font-weight: 600; }

/* KVKK */
.gdpr-check label { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: #666; font-weight: normal; cursor: pointer; }
.gdpr-check a { color: #2c6b9e; }

/* GÖNDER BUTONU */
.submit-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #1a4b6b, #2d7ea0);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,107,158,0.3); }

/* BAŞARI MESAJI */
.success-message {
  background: linear-gradient(135deg, #e8f5e9, #f1f8f2);
  border: 2px solid #a5d6a7;
  border-radius: 14px;
  padding: 40px 30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.success-message i { font-size: 3rem; color: #2e7d32; }
.success-message h3 { margin: 0; font-size: 1.4rem; color: #1b5e20; }
.success-message p { margin: 0; color: #555; }
.success-message button {
  margin-top: 10px;
  padding: 10px 24px;
  background: #2c9e52;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

/* BİLGİ KUTULARI */
.info-box {
  background: white;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid #2c6b9e;
}
.info-box > i { font-size: 1.4rem; color: #2c6b9e; margin-bottom: 8px; display: block; }
.info-box h4 { margin: 0 0 8px; color: #1a3d5c; font-size: 0.95rem; }
.info-box p { margin: 0; font-size: 0.875rem; color: #555; line-height: 1.6; }
.info-box a { color: #2c6b9e; text-decoration: none; }
.info-box a:hover { text-decoration: underline; }

/* SSS */
.faq-box { border-left-color: #8c6b2c; }
.faq-box > i { color: #8c6b2c; }
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.faq-item { border: 1px solid #ede0cc; border-radius: 8px; overflow: hidden; }
.faq-question {
  width: 100%;
  background: #fdf8f0;
  border: none;
  padding: 11px 14px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5a3e10;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i { transition: transform 0.3s; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.83rem;
  color: #555;
  padding: 0 14px;
  line-height: 1.5;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-answer.open { max-height: 120px; padding: 10px 14px; }

/* MOBİL */
@media (max-width: 768px) {
  .complaint-wrapper { flex-direction: column; }
  .form-row { flex-direction: column; }
  .process-inner { gap: 6px; }
  .step-arrow { display: none; }
  .page-hero-content h1 { font-size: 1.7rem; }
  .submit-btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .page-hero { height: 210px; }
  .process-steps { padding: 24px 14px; }
  .process-step { min-width: 44%; padding: 10px; }
  .complaint-main { padding: 32px 14px 40px; }
  .complaint-info-col { min-width: 100%; }
  .type-btn { padding: 8px 13px; font-size: 0.8rem; }
  .info-box { padding: 16px 18px; }
}