/* ============================================================
   İLETİŞİM SAYFASI — iletisim.css
   ============================================================ */

/* ── BÖLÜM ───────────────────────────────────────────── */
.ct-section {
  padding: 40px 0 80px;
}

/* ── BİLGİ KUTUSU ────────────────────────────────────── */
.ct-info-box {
  margin-bottom: 32px;
}

.ct-info-box__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 16px;
  display: inline-block;
}

.ct-info-box__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin: 0 0 24px;
}

.ct-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e6e6e6;
}

.ct-info-row:first-of-type { border-top: 1px solid #e6e6e6; }

.ct-info-row__icon {
  flex-shrink: 0;
  color: #1a1a1a;
  margin-top: 2px;
}

.ct-info-row__text {
  flex: 1;
  min-width: 0;
}

.ct-info-row__text p {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.55;
  color: #222;
}

.ct-info-row__text p:last-child { margin-bottom: 0; }

.ct-info-row__text a {
  color: #222;
  text-decoration: none;
  transition: color 0.15s;
}

.ct-info-row__text a:hover { color: #000; text-decoration: underline; }

/* ── HARİTA ──────────────────────────────────────────── */
.ct-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.ct-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── ALERT ───────────────────────────────────────────── */
.ct-alert {
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0;
}

.ct-alert--success {
  background: #e8f9ee;
  color: #1a6b34;
  border-left: 4px solid #28a745;
}

.ct-alert--error {
  background: #fdf0f0;
  color: #a31a1a;
  border-left: 4px solid #dc3545;
}

/* ── FORM ────────────────────────────────────────────── */
.ct-form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: 7px;
}

.ct-form__req { color: #c00; }

.ct-form__input,
.ct-form__textarea {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  outline: none;
  transition: border-color 0.18s;
  font-family: inherit;
  box-sizing: border-box;
}

.ct-form__input:focus,
.ct-form__textarea:focus {
  border-color: #1a1a1a;
}

.ct-form__textarea {
  resize: vertical;
  min-height: 150px;
}

.ct-form__kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.ct-form__kvkk input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #1a1a1a;
  cursor: pointer;
}

.ct-form__submit {
  display: inline-block;
  padding: 13px 40px;
  background: #ffed00;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  font-family: inherit;
}

.ct-form__submit:hover { background: #e6d400; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 959px) {
  .ct-section { padding: 32px 0 56px; }
}

@media (max-width: 639px) {
  .ct-section { padding: 24px 0 40px; }
  .ct-map { aspect-ratio: 16 / 9; }
  .ct-form__submit { width: 100%; text-align: center; }
}
