.tour-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}
.tour-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}
.tour-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}
.tour-form input, 
.tour-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.destinasi-box {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f9f9f9;
}
.destinasi-box .opsi label {
  display: block;
  font-weight: normal;
  margin: 5px 0;
}
button#addDestinasi {
  width: 100%;
  padding: 12px;
  border: none;
  background: #3498db;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}
button#addDestinasi:hover {
  background: #2980b9;
}
.total-box {
  margin-top: 20px;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  background: #2ecc71;
  color: #fff;
  border-radius: 8px;
}
.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.action-buttons button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
#sendWA { background: #25D366; }
#sendEmail { background: #3498db; }
#downloadPDF { background: #e67e22; }
#sendWA:hover { background: #128C7E; }
#sendEmail:hover { background: #2980b9; }
#downloadPDF:hover { background: #d35400; }

