/* ------------------ Global / Layout ------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;   /* yana scroll engelle */
}

body.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #0d2b5c;
  font-family: Arial, sans-serif;
}

main { flex: 1; display: block; }

/* ------------------ Navbar ------------------ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d2b5c;
  padding: 10px 20px;
  flex-wrap: wrap;   /* mobilde alt satır için */
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: bold;
}

.logo img {
  height: 40px;
  margin-right: 8px;
}

.logo span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

/* nav linkleri */
.navbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
}

.navbar nav a.active {
  text-decoration: none;
  font-weight: 600;
}

/* Dil seçici */
.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-selector .lang-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.language-selector img {
  width: 22px;
  height: auto;
  display: block;
}

/* ------------------ Contact header ------------------ */
.contact-header {
  text-align: center;
  padding: 56px 20px 28px;
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #0d2b5c;
}

.contact-header p {
  color: #444;
}

/* ------------------ Cards ------------------ */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 10% 40px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  max-width: 320px;
  background: #f2f2f2;
  padding: 26px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: transform .2s ease;
  color: #0d2b5c;
  margin-bottom: 20px;   /* kartlar arasında dikey boşluk */
}

.contact-card:hover { transform: translateY(-4px); }

.contact-card i {
  font-size: 1.9rem;
  color: #0d2b5c;
  margin-bottom: 12px;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: #0d2b5c;
}

.contact-card p { color: #333; line-height: 1.5; }

.contact-card a {
  color: #0073e6;
  text-decoration: none;
}

.contact-card a:hover { text-decoration: underline; }

/* ------------------ Footer ------------------ */
footer {
  background: #0d2b5c;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  width: 100%;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
  }

  .navbar nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    line-height: 1;
  }

   .navbar nav a {
    font-size: 0.9rem;   /* ✅ biraz küçüldü */
    padding: 6px 0;      /* ✅ üst-alt boşluk eklendi */
  }

  /* ✅ Menü ile başlık arasına boşluk */
  .contact-header {
    margin-top: 30px;   /* üstten biraz mesafe */
  }

  .contact-header h2 {
    font-size: 1.6rem;  /* başlığı biraz küçült */
  }

  .contact-header p {
    font-size: 0.95rem; /* açıklamayı da küçült */
  }

  /* bayraklar mobilde alt satırda ve ortalı */
  .language-selector {
    margin-top: 8px;
    justify-content: center;
    width: 100%;
  }

  .contact-cards {
    padding: 10px 16px 30px;
    gap: 20px;
  }

  .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 24px;  /* mobilde ekstra dikey boşluk */
  }
}


.features {
  list-style: none;
  padding: 0;
}
.features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
}
.features .icon-check {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23003366" viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4L9 16.2z"/></svg>') no-repeat center;
  background-size: contain;
}
