/* Property Detail Page - detail.css */
.property-view {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 16px;
}
.detail-header {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.detail-header img {
  width: 380px;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
}
.detail-info {
  flex: 1;
}
.detail-info h1 {
  margin: 0 0 10px;
}
.inquiry-form {
  background: #fff;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  margin-top: 20px;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.msg {
  margin: 10px 0;
  padding: 10px;
  border-radius: 4px;
}
.msg.success {
  background: #e6f4ea;
  color: #256029;
}
.msg.error {
  background: #fdecea;
  color: #b71c1c;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .detail-header {
    flex-direction: column;
  }
  .detail-header img {
    width: 100%;
    height: auto;
  }
}
