/* GENEL RENKLER */
:root {
  --primary: #2c3e50;
  --accent: #f39c12;
  --light: #ecf0f1;
  --dark: #1a1a1a;
}

/* 1) CONTACT HERO */
.contact-section {
  position: relative;
  padding: 100px 20px 60px;
  background: url(img/HARİTA-SON2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: fixed;
  color: var(--light);
  text-align: center;
}

/* EKLENDİ: Logo ve formu ortalamak için kapsayıcı */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* EKLENDİ: Logo stil düzenlemesi */
.ilet-logo {
  height: 500px;
  width: 500px;
  border-radius: 48%;
  object-fit: cover;
  margin-bottom: 40px;
  z-index: 3;
}

.contact-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: var(--light);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: var(--dark);
  z-index: 2;
  position: relative;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background: #e67e22;
  transform: translateY(-2px);
}

/* 2) CITIES */
.services-cities {
  padding: 60px 20px;
  text-align: center;
  background: #2e2e2e;
  color: #fff;
}

.services-cities h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
  color: #fff;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.city-card {
  background: #3c3c3c;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.3s;
}

.city-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.city-card img {
  width: 36px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.city-card span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* 3) REGIONS */
.services-regions {
  padding: 40px 20px;
  background: #1f1f1f;
  color: #ddd;
  text-align: center;
}

.services-regions h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 4px;
  color: #fff;
}

.services-regions p {
  max-width: 900px;
  margin: 12px auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-regions strong {
  color: var(--accent);
}

/* 4) HELP SECTION */
.help-section {
  padding: 100px 20px;
  background: #121212;
  color: #ccc;
  text-align: center;
}

.help-section h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.help-text {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.5;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #1c1c1c;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-height: 160px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.help-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.help-card i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
  height: 32px;
  line-height: 1;
}

.help-card span,
.help-card p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
  white-space: pre-line;
  margin-top: 6px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-form {
    margin: 0 20px;
    align-self: center;
  }

  .cities-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }

  /* EKLENDİ: Logo boyutunu mobilde daha küçük yap */
  .ilet-logo {
    height: 240px;
    width: 240px;
  }
}

.snackbar {
  visibility: hidden;
  min-width: 260px;
  background-color: #2ecc71;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 14px 20px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.4s ease, bottom 0.4s ease;
}

.snackbar.show {
  visibility: visible;
  bottom: 50px;
  opacity: 1;
}
