/* --- GENEL ALAN --- */
.contact-page-container {
  max-width: 1200px;
  margin: 110px auto 70px;
  padding: 0 24px;
}

/* --- 1. BAŞLIK VE METİNLER --- */
.contact-intro {
  margin-bottom: 35px;
}

.contact-title {
  font-family: 'Jost', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.contact-subtitle {
  font-size: 14px;
  color: #333333;
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-desc {
  font-size: 13.5px;
  color: #666666;
  font-weight: 300;
  line-height: 1.6;
}

/* --- 2. HARİTA --- */
.contact-map-wrapper {
  width: 100%;
  margin-bottom: 50px;
  border: 1px solid #e5e5e5;
  filter: grayscale(15%);
}

.contact-map-wrapper iframe {
  display: block;
}

/* --- 3. 3'LÜ BİLGİ KOLONLARI --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 45px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 45px;
}

.info-column h3 {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.info-column p {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 6px;
  font-weight: 300;
}

.info-column a {
  color: #111111;
  transition: opacity 0.2s;
}

.info-column a:hover {
  opacity: 0.6;
  text-decoration: underline;
}

/* --- 4. FORM ALANI --- */
.contact-form-section {
  margin-bottom: 60px;
}

.form-title {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: #555555;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  background-color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #111111;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111111;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888888;
  font-weight: 300;
}

/* --- ÇİFT BUTONLU GÖNDERİM ALANI --- */
.form-submit-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 10px;
}

.btn-submit {
  min-width: 200px;
  padding: 14px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: 2px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* E-posta Butonu (Çizgisel Tasarım) */
.btn-mail {
  background-color: transparent;
  border: 1px solid #111111;
  color: #111111;
}

.btn-mail:hover {
  background-color: #111111;
  color: #ffffff;
}

/* WhatsApp Butonu (Siyah Zemin & Hover'da Gri) */
.btn-whatsapp {
  background-color: #111111;
  border: 1px solid #111111;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: #d3d3d3;
  border-color: #d3d3d3;
  color: #111111;
}

/* --- BAŞA DÖN BUTONU --- */
.back-to-top-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 40px 0 20px;
}

.back-to-top-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #dcdcdc;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-to-top-btn:hover {
  border-color: #111111;
  background-color: #111111;
  color: #ffffff;
}

.back-to-top-wrapper span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #555555;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
  .contact-page-container {
    margin-top: 95px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row-three {
    grid-template-columns: 1fr;
  }

  .form-submit-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .btn-submit {
    width: 100%;
  }
}
/* ÇALIŞMA SAATLERİ ALTINDAKİ ÇİZGİ DÜZENLEMESİ */
.contact-info-grid {
  margin-bottom: 75px !important;     /* Çizgiyi çalışma saatlerinden aşağıya iter */
  padding-bottom: 50px !important;    /* Metin ile çizgi arasına nefes payı açar */
  border-bottom: 1px solid #e2e2e2 !important; /* Çizgiyi 1 cm (10px) kalınlaştırır */
}