/* HARİTA – ÜST BÖLÜM */
.map-section {
  width: 100%;
  height: 60vh;
  min-height: 360px;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

/* ALT İLETİŞİM İÇERİĞİ */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

/* BAŞLIK BLOĞU */
.contact-header {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}

.contact-header h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.contact-header p {
  color: #4b5563;
  font-size: 16px;
}

/* INFO */
.contact-info h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.contact-info p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}
.info-list {
  list-style: none;
  padding: 0;
}
.info-list li {
  margin-bottom: 20px;
}
.info-list strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}
.info-list span {
  font-size: 16px;
  color: #0f172a;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}


/* FLOATING INPUT */
.form-floating {
  position: relative;
  margin-bottom: 25px;
}
.form-floating input,
.form-floating textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  outline: none;
  background: none;
}
.form-floating textarea {
  min-height: 130px;
  resize: vertical;
}
.form-floating label {
  position: absolute;
  top: 50%;
  left: 14px;
  color: #64748b;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: .3s;
  background: #fff;
  padding: 0 6px;
}

/* ACTIVE STATE */
.form-floating input:focus + label,
.form-floating textarea:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #2563eb;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: .3s;
}
.btn-submit:hover {
  opacity: .9;
  transform: translateY(-2px);
}

/* INFO CARDS */
.info-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  margin-top: 24px;
  border: 1px solid #e2e8f0;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #0f172a;
  font-weight: 600;
}

.working-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.working-hours li {
  padding: 8px 0;
  color: #475569;
  font-size: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.working-hours li:last-child {
  border-bottom: none;
}

/* WHATSAPP CARD */
.whatsapp-card {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border: none;
  margin-top: 24px;
}

.whatsapp-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.whatsapp-card p {
  color: rgba(255,255,255,.9);
  font-size: 14px;
  margin: 0;
}

.whatsapp-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 4px;
}

.whatsapp-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255,255,255,.2);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,.3);
}

.whatsapp-btn:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-header h1 {
    font-size: 28px;
  }
  .info-card {
    padding: 20px;
  }
}
