.contact-page {
  margin-top: 50px;
  display: flex;
  gap: 50px;
  justify-content: space-around;
}

.contact-page .left {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-page .left .information-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.email a h5,
.phone a h5 {
  color: #717275;
}

/* Contact form container */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* Input ve textarea genel stil */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0 18px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Focus durumu */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077cc;
  box-shadow: 0 0 5px rgba(0, 119, 204, 0.4);
  outline: none;
}

/* Label */
.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

/* Submit button */
.contact-form input[type="submit"] {
  background: #0077cc;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.contact-form input[type="submit"]:hover {
  background: #005fa3;
}

/* Response message */
.wpcf7-response-output {
  margin-top: 15px;
  font-size: 14px;
  color: #0077cc;
}

@media (max-width: 992px) {
  .contact-page {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .contact-page .left,
  .contact-page .right {
    width: 100%;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-page .left .information-card {
    align-items: center;
    text-align: center;
  }

  .contact-page .left .contact-slogan {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-form {
    padding: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }
}
