/* ═══════════════════════════════════════════════════════
   iletisim.css — İletişim sayfası
   Miras: main.css > iletisim.css
═══════════════════════════════════════════════════════ */

/* ── Sayfa alanı ────────────────────────────────────── */
.zp-iletisim-page {
  background: var(--zp-light);
  padding: 2rem 0 4rem;
}

/* ── Sayfa başlığı ──────────────────────────────────── */
.zp-page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.zp-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--zp-dark);
  margin-bottom: .5rem;
}
.zp-page-header p {
  color: var(--zp-gray);
  font-size: .925rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── İletişim info kartları ─────────────────────────── */
.zp-contact-card {
  background: #fff;
  border-radius: var(--zp-radius);
  box-shadow: var(--zp-shadow);
  padding: 1.5rem;
  height: 100%;
}

.zp-contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--zp-border);
}
.zp-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.zp-contact-item:first-child { padding-top: 0; }

.zp-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(230, 57, 70, .08);
  color: var(--zp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.zp-contact-info-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--zp-gray);
  margin-bottom: .2rem;
}
.zp-contact-info-value {
  font-size: .925rem;
  font-weight: 600;
  color: var(--zp-dark);
  line-height: 1.5;
}
.zp-contact-info-value a {
  color: var(--zp-dark);
  text-decoration: none;
  transition: color .2s;
}
.zp-contact-info-value a:hover { color: var(--zp-primary); }

/* ── Proda Medya alt marka kutusu ───────────────────── */
.zp-brand-box {
  background: #fff;
  border-radius: var(--zp-radius);
  box-shadow: var(--zp-shadow);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid var(--zp-primary);
}
.zp-brand-box img {
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
}
.zp-brand-box-text {
  font-size: .8rem;
  color: var(--zp-gray);
  line-height: 1.5;
}
.zp-brand-box-text a {
  color: var(--zp-primary);
  font-weight: 700;
  text-decoration: none;
}
.zp-brand-box-text a:hover { text-decoration: underline; }

/* ── Form kutusu ────────────────────────────────────── */
.zp-form-card {
  background: #fff;
  border-radius: var(--zp-radius);
  box-shadow: var(--zp-shadow);
  padding: 2rem;
  height: 100%;
}
.zp-form-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--zp-dark);
  margin-bottom: 1.5rem;
}

.zp-form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--zp-dark);
  margin-bottom: .35rem;
  display: block;
}
.zp-form-input {
  width: 100%;
  border: 1.5px solid var(--zp-border);
  border-radius: 10px;
  padding: .65rem 1rem;
  font-size: .9rem;
  color: var(--zp-dark);
  background: #fff;
  outline: none;
  transition: var(--zp-transition);
}
.zp-form-input:focus {
  border-color: var(--zp-primary);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, .1);
}
textarea.zp-form-input { resize: vertical; min-height: 130px; }

/* Submit butonu */
.zp-form-submit {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--zp-primary);
  color: #fff;
  border: none;
  border-radius: 50rem;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--zp-transition);
  margin-top: .5rem;
}
.zp-form-submit:hover {
  background: var(--zp-primary-dark);
  transform: translateY(-1px);
}

/* Başarı mesajı */
.zp-form-success {
  display: none;
  background: #d1e7dd;
  color: #0f5132;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  margin-top: 1rem;
  align-items: center;
  gap: .75rem;
}
.zp-form-success.show { display: flex; }

/* WhatsApp butonu */
.zp-wp-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25d366;
  color: #fff;
  border-radius: 50rem;
  padding: .5rem 1.25rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--zp-transition);
  margin-top: .5rem;
}
.zp-wp-btn:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
}
