.ContactPage {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../image/arkaplan/contect.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
input::placeholder,
textarea::placeholder {
    color: black;
    opacity: 1; /* Bazı tarayıcılarda saydam olabiliyor */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

/* İletişim Alanı */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: 50px 20px;
}
#adres {
  flex: 0 0 48%;
  padding: 15px;
  color: #fff;
}
.whatsapp-link {
  color: #25D366; /* WhatsApp yeşil rengi */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.whatsapp-link:hover {
  text-decoration: underline;
}
.contact-box {
  display: flex;
  background-color: rgba(253, 253, 253, 0.85);
  padding: 40px;
  border-radius: 12px;
  max-width: 1000px;
  width: 100%;
  gap: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.form-left {
  flex: 1;
  min-width: 300px;
  color: #333;
}

.form-left h2 {
  margin-bottom: 20px;
  color: #333;
}

.form-left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-left input,
.form-left textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid black;
  font-size: 15px;
}

.form-left textarea {
  resize: vertical;
}

.form-left button {
  padding: 12px;
  background-color: #007bff;
  border: none;
  color: black;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.form-left button:hover {
  background-color: #0056b3;
}

/* Bilgi Alanı */
.info-right {
  flex: 1;
  min-width: 250px;
  color: #333;
}

.info-right h3 {
  margin-bottom: 10px;
}

.info-right p {
  margin: 8px 0;
}
