/* =============================
   GENEL
============================= */

body {
  background-color: #f8f6f2;
  font-family: "Poppins", sans-serif;
}

/* Sayfa başlığı */
.contact-title {
  text-align: center;
  margin-top: 40px;
  font-size: 30px;
  font-weight: 600;
  color: #3e3e3e;
}

/* =============================
   İLETİŞİM WRAPPER
============================= */

.contact-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

/* =============================
   SOL TARAF — FORM
============================= */

.contact-form {
  flex: 2;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e8e2da;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #3e3e3e;
}

/* Inputlar */
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d4c7bc;
  font-size: 15px;
  background: #faf7f3;
  outline: none;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b79d83;
}

/* Gönder butonu */
.contact-form button {
  width: 100%;
  padding: 12px 0;
  background: #b79d83;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s;
}

.contact-form button:hover {
  background-color: #9c856d;
}

/* =============================
   SAĞ TARAF — BİLGİ KUTUSU
============================= */

.contact-info {
  flex: 1;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e8e2da;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #3e3e3e;
}

/* Satır */
.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.info-box i {
  font-size: 20px;
  color: #b79d83;
}

.info-box a {
  color: #3e3e3e;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s;
}

.info-box a:hover {
  color: #b79d83;
}

/* =============================
   INSTAGRAM & WHATSAPP BUTONLARI
============================= */

.social-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-buttons a {
  flex: 1;
  padding: 12px 0;
  background-color: white;
  border: 1px solid #e8e2da;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #3e3e3e;
  text-decoration: none;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-buttons a:hover {
  border-color: #b79d83;
  color: #b79d83;
}

/* =============================
   MOBİL UYUMLULUK
============================= */

@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
